Reformat html files

This commit is contained in:
cuom1999 2023-01-27 17:11:10 -06:00
parent 9a208ca108
commit 52f1e77fe1
205 changed files with 11096 additions and 11086 deletions

View file

@ -2,19 +2,19 @@
{% load i18n %}
{% block extrahead %}{{ block.super }}
<script>
django.jQuery(function ($) {
$('.userlink').appendTo('div#bottombar').show();
});
</script>
<script>
django.jQuery(function ($) {
$('.userlink').appendTo('div#bottombar').show();
});
</script>
{% endblock extrahead %}
{% block after_field_sets %}{{ block.super }}
{% if original %}
<a style="display: none" title="{% trans "Edit user" %}" href="{% url 'admin:auth_user_change' original.user.pk %}"
class="button userlink">
<i class="fa fa-lg fa-user"></i>
<span class="text">{% trans "Edit user" %}</span>
</a>
{% endif %}
{% if original %}
<a style="display: none" title="{% trans "Edit user" %}" href="{% url 'admin:auth_user_change' original.user.pk %}"
class="button userlink">
<i class="fa fa-lg fa-user"></i>
<span class="text">{% trans "Edit user" %}</span>
</a>
{% endif %}
{% endblock %}