show submitter email on backoffice event list
This commit is contained in:
parent
b006c53c83
commit
8affbc9369
|
@ -7,6 +7,7 @@
|
||||||
{% if not noduration %}<th>Duration</th>{% endif %}
|
{% if not noduration %}<th>Duration</th>{% endif %}
|
||||||
{% if not nopeople %}<th>People</th>{% endif %}
|
{% if not nopeople %}<th>People</th>{% endif %}
|
||||||
{% if not noschedule %}<th>Scheduled</th>{% endif %}
|
{% if not noschedule %}<th>Scheduled</th>{% endif %}
|
||||||
|
{% if not noemail %}<th>Submitter Email</th>{% endif %}
|
||||||
{% if not noactions %}<th>Actions</th>{% endif %}
|
{% if not noactions %}<th>Actions</th>{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -46,6 +47,9 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if not noemail %}
|
||||||
|
<td>{{ event.proposal.user.email }}</td>
|
||||||
|
{% endif %}
|
||||||
{% if not noactions %}
|
{% if not noactions %}
|
||||||
<td>
|
<td>
|
||||||
<div class="btn-group-vertical">
|
<div class="btn-group-vertical">
|
||||||
|
|
Loading…
Reference in a new issue