NDOJ/templates/organization/requests/detail.html

26 lines
744 B
HTML
Raw Normal View History

2022-05-30 06:59:53 +00:00
{% extends "organization/home-base.html" %}
2020-01-21 06:35:58 +00:00
2022-05-30 06:59:53 +00:00
{% block middle_content %}
<table class="table">
2020-01-21 06:35:58 +00:00
<tr>
<th>{{ _('User:') }}</th>
<td>{{ link_user(object.user) }}</td>
</tr>
<tr>
<th>{{ _('Organization:') }}</th>
<td>
{% with org=object.organization %}
<a href="{{ org.get_absolute_url() }}">{{ org.name }}</a>
{% endwith %}
</td>
</tr>
<tr>
<th>{{ _('Time:') }}</th>
<td>{{ object.time|date(_("N j, Y, g:i a")) }}</td>
</tr>
<tr>
2022-05-30 06:59:53 +00:00
<th>{{ _('Reason:') }}</th>
<td>{{ object.reason }}</td>
2020-01-21 06:35:58 +00:00
</tr>
</table>
{% endblock %}