aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/wiki_page_history.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-06-10 12:22:01 +0200
committerMario Vavti <mario@mariovavti.com>2016-06-10 12:22:01 +0200
commit86985b454f75ac7f87e0dfe94fd754d7cbb0bf09 (patch)
tree42094d12360158d96bf8149d1b7a4c25e5445430 /view/tpl/wiki_page_history.tpl
parent9d5d3a946817c1b1a9dc18dead85bc989e820564 (diff)
parentc55a7b5f362e62696ef7d44cc972cb46c2802646 (diff)
downloadvolse-hubzilla-86985b454f75ac7f87e0dfe94fd754d7cbb0bf09.tar.gz
volse-hubzilla-86985b454f75ac7f87e0dfe94fd754d7cbb0bf09.tar.bz2
volse-hubzilla-86985b454f75ac7f87e0dfe94fd754d7cbb0bf09.zip
Merge branch 'dev' into sabre32
Diffstat (limited to 'view/tpl/wiki_page_history.tpl')
-rw-r--r--view/tpl/wiki_page_history.tpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/view/tpl/wiki_page_history.tpl b/view/tpl/wiki_page_history.tpl
new file mode 100644
index 000000000..6ce3ce204
--- /dev/null
+++ b/view/tpl/wiki_page_history.tpl
@@ -0,0 +1,12 @@
+<table class="table-striped table-responsive table-hover" style="width: 100%;">
+ {{foreach $pageHistory as $commit}}
+ <tr><td>
+ <table id="rev-{{$commit.hash}}" onclick="$('#details-{{$commit.hash}}').show()" width="100%">
+ <tr><td width="10%">Date</td><td width="70%">{{$commit.date}}</td><td rowspan="3" width="20%" align="right">
+ <button id="revert-{{$commit.hash}}" class="btn btn-danger btn-xs" onclick="wiki_revert_page('{{$commit.hash}}')">Revert</button></td></tr>
+ <tr><td>Name</td><td>{{$commit.name}} &lt;{{$commit.email}}&gt;</td></tr>
+ <tr><td>Message</td><td>{{$commit.title}}</td></tr>
+ </table>
+ </td></tr>
+ {{/foreach}}
+</table> \ No newline at end of file