aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-10-28 18:20:33 +0100
committerChristian Weiske <cweiske@cweiske.de>2014-10-28 18:20:33 +0100
commitce010bc12b8b0a03e662a2f4df984daa6d252fb8 (patch)
tree4447d223d499cea9fcca0749039990f569117a4a /templates
parent891db33ead914486b6f4f7e32ebd3a7f511562e8 (diff)
downloadgrauphel-ce010bc12b8b0a03e662a2f4df984daa6d252fb8.tar.gz
grauphel-ce010bc12b8b0a03e662a2f4df984daa6d252fb8.zip
color modified date as files app does it
Diffstat (limited to 'templates')
-rw-r--r--templates/tag.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/tag.php b/templates/tag.php
index b2cab02..a8752a4 100644
--- a/templates/tag.php
+++ b/templates/tag.php
@@ -9,8 +9,8 @@
<table class="table" id="grauphel-notes">
<thead>
<tr>
- <th>Title</th>
- <th>Last change</th>
+ <th id="headerTitle">Title</th>
+ <th>Modified</th>
</tr>
</thead>
<tbody>
@@ -20,7 +20,7 @@
<td>
<a class="cellclick" href="<?php p(OCP\Util::linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
</td>
- <td>
+ <td style="color: <?php echo p($note['dateColor']); ?>">
<?php p(\OCP\Util::formatDate(strtotime($note['last-change-date']))); ?>
</td>
</tr>