blob: 7b4d6fa80ccd1f4ad3ae00f604e3fbd5ae2ec528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<table class="default nohover">
<tbody>
<tr>
<td><?= _('Gesamtzugriffe') ?></td>
<td><?= htmlReady($counter) ?></td>
</tr>
<tr>
<td><?= _('Heute') ?></td>
<td><?= htmlReady($counter_today) ?></td>
</tr>
</tbody>
</table>
<div data-dialog-button>
<?= \Studip\LinkButton::create(
_('Exportieren'),
$controller->statisticsURL($material, ['export' => 1])
) ?>
</div>
|