add emailed & archived status to event view

pull/3099/head
Andrew Bauer 2020-12-13 15:01:47 -06:00
parent 882447317a
commit 48c6309394
1 changed files with 8 additions and 0 deletions

View File

@ -221,6 +221,14 @@ if ( !$Event->Id() ) {
<th class="text-right"><?php echo translate('Storage') ?></th>
<td id="dataStorage"><?php echo $storage?></td>
</tr>
<tr>
<th class="text-right"><?php echo translate('Archived') ?></th>
<td id="dataArchived"><?php echo $Event->Archived ? translate('Yes') : translate('No') ?></td>
</tr>
<tr>
<th class="text-right"><?php echo translate('Emailed') ?></th>
<td id="dataArchived"><?php echo $Event->Emailed ? translate('Yes') : translate('No') ?></td>
</tr>
</tbody>
</table>
</div>