blob: 7d5cab172c7e238d948c7710eea7c95074175db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
<?php /** @var $l OC_L10N */ ?>
<?php $_['appNavigation']->printPage(); ?>
<div id="app-content" class="list">
<div id="searchresults" class="hidden"></div>
<h1>Notebook: <?php p($_['tag']); ?></h1>
<table class="table" id="grauphel-notes">
<thead>
<tr>
<th id="headerTitle">Title</th>
<th>Modified</th>
</tr>
</thead>
<tbody>
<?php foreach ($_['notes'] as $note) { ?>
<tr id="note-<?php p($note['guid']); ?>">
<td>
<a class="cellclick" href="<?php p(OCP\Util::linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
</td>
<td style="color: <?php echo p($note['dateColor']); ?>">
<?php p(\OCP\Util::formatDate(strtotime($note['last-change-date']))); ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
|