mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-06 09:45:23 +02:00
13 lines
404 B
HTML
13 lines
404 B
HTML
{% extends "django/admin/includes/detail_table_fieldset.html" %}
|
|
|
|
{% comment %}
|
|
This is using a custom implementation fieldset.html (see admin/fieldset.html)
|
|
{% endcomment %}
|
|
|
|
{% block field_other %}
|
|
{% if field.field.name == "email" %}
|
|
{% include "admin/input_with_clipboard.html" with field=field.field %}
|
|
{% else %}
|
|
{{ block.super }}
|
|
{% endif %}
|
|
{% endblock field_other %}
|