mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
fix: html5 does not allow self-closing tags
Seems like leftovers from xhtml.
This commit is contained in:
parent
cb8ae39854
commit
3eede068f4
2 changed files with 6 additions and 6 deletions
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
{% block extrastyle %}
|
||||
{{ block.super }}
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/changelists.css' %}" />
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/forms.css' %}" />
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/changelists.css' %}">
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/forms.css' %}">
|
||||
{{ media.css }}
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/constance.css' %}" />
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/constance.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block extrahead %}
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
{% endif %}
|
||||
|
||||
<p class="paginator sticky-footer">
|
||||
<input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/>
|
||||
<input type="submit" name="_save" class="default" value="{% trans 'Save' %}">
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -46,9 +46,9 @@
|
|||
</td>
|
||||
<td>
|
||||
{% if item.modified %}
|
||||
<img src="{% static 'admin/img/icon-yes.'|add:icon_type %}" alt="{{ item.modified }}" />
|
||||
<img src="{% static 'admin/img/icon-yes.'|add:icon_type %}" alt="{{ item.modified }}">
|
||||
{% else %}
|
||||
<img src="{% static 'admin/img/icon-no.'|add:icon_type %}" alt="{{ item.modified }}" />
|
||||
<img src="{% static 'admin/img/icon-no.'|add:icon_type %}" alt="{{ item.modified }}">
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Reference in a new issue