mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 03:13:42 -05:00
# Conflicts: # app/templates/components/components/footer/_footer.scss # app/templates/components/components/hint/_hint.scss # app/templates/views/service-settings/data-retention.html # app/templates/views/service-settings/sms-senders.html # app/templates/views/two-factor-webauthn.html # app/templates/views/user-profile/security-keys.html
59 lines
1.5 KiB
HTML
59 lines
1.5 KiB
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/table.html" import list_table, field, text_field, link_field, right_aligned_field_heading, hidden_field_heading %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
|
|
{% block per_page_title %}
|
|
{{ provider_versions[0].display_name }}
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ usaBackLink({ "href": url_for('main.view_providers') }) }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="grid-col-8">
|
|
|
|
{{ page_header(provider_versions[0].display_name) }}
|
|
|
|
<p>
|
|
Only showing the latest 100 versions.
|
|
</p>
|
|
|
|
{% call(item, row_number) list_table(
|
|
provider_versions,
|
|
caption='',
|
|
caption_visible=False,
|
|
empty_message='No history for this provider',
|
|
field_headings=['Version', 'Last Updated', 'Updated By', 'Priority', 'Active'],
|
|
field_headings_visible=True
|
|
) %}
|
|
|
|
{{ text_field(item.version) }}
|
|
|
|
{% if item.updated_at %}
|
|
{{ text_field(item.updated_at|format_datetime_short) }}
|
|
{% else %}
|
|
{{ text_field('None') }}
|
|
{% endif %}
|
|
|
|
{% if item.created_by %}
|
|
{{ text_field(item.created_by.name) }}
|
|
{% else %}
|
|
{{ text_field('None') }}
|
|
{% endif %}
|
|
|
|
{{ text_field(item.priority) }}
|
|
|
|
{{ text_field(item.active) }}
|
|
|
|
{% endcall %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|