aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/dashboard/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/dashboard/index.html')
-rw-r--r--templates/web/default/dashboard/index.html12
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/web/default/dashboard/index.html b/templates/web/default/dashboard/index.html
index 1f733c8c5..0f2bb13ff 100644
--- a/templates/web/default/dashboard/index.html
+++ b/templates/web/default/dashboard/index.html
@@ -133,12 +133,18 @@
<th scope="col">14-30 days old</th>
</tr>
<tr>
- <td><ul><li></li></ul></td>
- <td><ul><li></li></ul></td>
- <td><ul><li></li></ul></td>
+ <td><ul>[% INCLUDE list, list = lists.1 %]</ul></td>
+ <td><ul>[% INCLUDE list, list = lists.2 %]</ul></td>
+ <td><ul>[% INCLUDE list, list = lists.3 %]</ul></td>
</tr>
</table>
</form>
[% INCLUDE 'footer.html' %]
+
+[% BLOCK list %]
+[% FOR p IN list %]
+<li><a href="/report/[% p.id %]">[% p.title | html %]</a></li>
+[% END %]
+[% END %]