summaryrefslogtreecommitdiff
path: root/gstudio/templates/metadashboard/wikidashboard.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/metadashboard/wikidashboard.html')
-rw-r--r--gstudio/templates/metadashboard/wikidashboard.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/gstudio/templates/metadashboard/wikidashboard.html b/gstudio/templates/metadashboard/wikidashboard.html
new file mode 100644
index 0000000..8b9d15e
--- /dev/null
+++ b/gstudio/templates/metadashboard/wikidashboard.html
@@ -0,0 +1,24 @@
+{% extends "gstudio/base.html" %}
+{% load gstudio_tags %}
+{% load i18n %}
+{% block content %}
+
+
+{% if user.is_authenticated %}
+
+<p> Here is a list of all the pages:</p>
+</br>
+ {% for each in pages.member_systems.all %}
+ <a href="/gstudio/page/gnowsys-page/{{each.id}}/">{{each.title}}</a></br>
+ {% endfor %}
+ <input type="button" value="Create a new page" onClick="location.href=parseURL('pageadd/');">
+ </p>
+ <p>
+ </br>
+{% else %}
+ <h1> <p style = "color :black;">OOPS!!! Login Please!</p></h1>
+{% endif %}
+
+
+
+{% endblock %}