NDOJ/templates/admin/auth/user/change_form.html

21 lines
614 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "admin/change_form.html" %}
{% load i18n %}
{% block extrahead %}{{ block.super }}
2023-01-27 23:11:10 +00:00
<script>
django.jQuery(function ($) {
$('.profilelink').appendTo('div#bottombar').show();
});
</script>
2020-01-21 06:35:58 +00:00
{% endblock extrahead %}
{% block after_field_sets %}{{ block.super }}
2023-01-27 23:11:10 +00:00
{% 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 %}
2020-01-21 06:35:58 +00:00
{% endblock %}