diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 10 | ||||
-rw-r--r-- | templates/registration/login.html | 2 |
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 }} |