aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/wiki.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/wiki.tpl')
-rw-r--r--view/tpl/wiki.tpl16
1 files changed, 14 insertions, 2 deletions
diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl
index 641b3256a..6ee4a7f89 100644
--- a/view/tpl/wiki.tpl
+++ b/view/tpl/wiki.tpl
@@ -30,6 +30,7 @@
</div>
<button id="new-wiki-submit" class="btn btn-primary" type="submit" name="submit" >Create Wiki</button>
</div>
+ <div>{{$acl}}</div>
</form>
<div class="clear"></div>
<hr>
@@ -74,8 +75,6 @@
</div>
</div>
-<div>{{$acl}}</div>
-
<script>
$(document).ready(function () {
// Show Edit tab first. Otherwise the Ace editor does not load.
@@ -98,4 +97,17 @@
ev.preventDefault();
});
+function wiki_delete_wiki(wikiName, resource_id) {
+ if(!confirm('Are you sure you want to delete the entire wiki: ' + JSON.stringify(wikiName))) {
+ return;
+ }
+ $.post("wiki/{{$channel}}/delete/wiki", {resource_id: resource_id}, function (data) {
+ if (data.success) {
+ window.console.log('Wiki deleted');
+ // Refresh list and redirect page as necessary
+ } else {
+ window.console.log('Error deleting wiki.');
+ }
+ }, 'json');
+}
</script>