Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #16350 -- Forced capitalization in template.
This improves rendering in some foreign languages.
  • Loading branch information
aaugustin committed Mar 22, 2013
1 parent 93cffc3 commit f7d945e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/admin/templates/admin/base.html
Expand Up @@ -53,7 +53,7 @@
{% block messages %}
{% if messages %}
<ul class="messagelist">{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message|capfirst }}</li>
{% endfor %}</ul>
{% endif %}
{% endblock messages %}
Expand Down

0 comments on commit f7d945e

Please sign in to comment.