diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-04-29 00:49:28 -0700 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-04-29 00:49:28 -0700 |
| commit | 7c27d1561e3210132576b315f0cd0603e2c1f7bd (patch) | |
| tree | 34b8663c8baf414b5e6daaae54fea341d5a1f813 | |
| parent | d20fbf46ba8dbb3339b0e79ac140e066ba3e8b02 (diff) | |
| parent | b1be28554f583189987641c945f70f72d4450aed (diff) | |
Merge pull request #20 from yumike/fix/pull_request_17_syntax_error
Fixed template syntax error, introduced in pull request #17
| -rw-r--r-- | django/contrib/admin/templates/admin/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin/base.html b/django/contrib/admin/templates/admin/base.html index 3ebec911ed..caa26744d4 100644 --- a/django/contrib/admin/templates/admin/base.html +++ b/django/contrib/admin/templates/admin/base.html @@ -34,7 +34,7 @@ {% endif %} {% if user.has_usable_password %} <a href="{% url 'admin:password_change' %}">{% trans 'Change password' %}</a> / - {% endif $} + {% endif %} <a href="{% url 'admin:logout' %}">{% trans 'Log out' %}</a> {% endblock %} </div> |
