26 lines
No EOL
628 B
HTML
26 lines
No EOL
628 B
HTML
{% extends "organization/home-base.html" %}
|
|
|
|
{% block middle_content %}
|
|
<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>
|
|
{% endblock %} |