summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJoaquín Aguirrezabalaga <kinote@kinote.org>2014-01-03 01:06:22 +0100
committerJoaquín Aguirrezabalaga <kinote@kinote.org>2014-01-03 01:06:40 +0100
commitf05c5e2d8a705df1c94b63a978267b291c893bbb (patch)
treea8bd95e9cc2c0bd48be57893ccc4ddec63152d29 /templates
parent802a74102b9073e961ef1d7a487f99b962d76512 (diff)
downloadelgarito-master.tar.gz
elgarito-master.zip
django 1.6HEADmaster
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html10
-rw-r--r--templates/registration/login.html2
2 files changed, 6 insertions, 6 deletions
diff --git a/templates/base.html b/templates/base.html
index 141fee5..7a11db6 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -3,11 +3,11 @@
<meta charset="utf-8">
<title>{% block title %}El Garito{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="StyleSheet" href="/static/estilos/bootstrap.min.css" type="text/css" />
- <link rel="StyleSheet" href="/static/estilos/bootstrap-responsive.min.css" type="text/css" />
- <link rel="StyleSheet" href="/static/estilos/elgarito.css" type="text/css" />
- <link rel="SHORTCUT ICON" href="/static/images/favicon.ico" />
- <link rel="icon" href="/static/images/favicon.ico" type="image/vnd.microsoft.icon" />
+ <link rel="StyleSheet" href="{{ STATIC_URL }}estilos/bootstrap.min.css" type="text/css" />
+ <link rel="StyleSheet" href="{{ STATIC_URL }}estilos/bootstrap-responsive.min.css" type="text/css" />
+ <link rel="StyleSheet" href="{{ STATIC_URL }}estilos/elgarito.css" type="text/css" />
+ <link rel="SHORTCUT ICON" href="{{ STATIC_URL }}images/favicon.ico" />
+ <link rel="icon" href="{{ STATIC_URL }}images/favicon.ico" type="image/vnd.microsoft.icon" />
{% block extra_header %}
{% endblock %}
</head>
diff --git a/templates/registration/login.html b/templates/registration/login.html
index da38bd9..2e022d2 100644
--- a/templates/registration/login.html
+++ b/templates/registration/login.html
@@ -7,7 +7,7 @@
{% block content %}
<h2>Por favor introduce tu nombre de usuario y contraseña</h2>
-<form method="post" class="form" action="{% url django.contrib.auth.views.login %}">
+<form method="post" class="form" action="{% url "django.contrib.auth.views.login" %}">
{% csrf_token %}
{{ form|bootstrap }}