NDOJ/templates/admin/auth/user/change_form.html
2023-01-27 17:11:10 -06:00

20 lines
614 B
HTML

{% extends "admin/change_form.html" %}
{% load i18n %}
{% block extrahead %}{{ block.super }}
<script>
django.jQuery(function ($) {
$('.profilelink').appendTo('div#bottombar').show();
});
</script>
{% endblock extrahead %}
{% block after_field_sets %}{{ block.super }}
{% if original %}
<a style="display: none" title="{% trans "Edit profile" %}" href="{% url 'admin:judge_profile_change' original.profile.pk %}"
class="button profilelink">
<i class="fa fa-lg fa-user-plus"></i>
<span class="text">{% trans "Edit profile" %}</span>
</a>
{% endif %}
{% endblock %}