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 %}
|
2023-01-27 23:11:10 +00:00
|
|
|
<table class="table">
|
|
|
|
<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>
|
|
|
|
<th>{{ _('Reason:') }}</th>
|
|
|
|
<td>{{ object.reason }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2020-01-21 06:35:58 +00:00
|
|
|
{% endblock %}
|