diff piecrust/admin/templates/dashboard.html @ 778:5e91bc0e3b4d

internal: Move admin panel code into the piecrust package.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 Jul 2016 15:02:24 +0200
parents foodtruck/templates/dashboard.html@a7726e4862c4
children 0e88640a994d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/piecrust/admin/templates/dashboard.html	Sat Jul 16 15:02:24 2016 +0200
@@ -0,0 +1,70 @@
+{% extends 'layouts/default.html' %}
+
+{% block content %}
+<div class="row">
+    <div class="col-md-4 col-md-offset-8">
+    {% if needs_switch %}
+        <form action="{{url_switch}}" method="POST">
+        {% for site in sites %}
+            {% if site.name != site_name %}
+                <button type="submit" name="site_name" value="{{site.name}}" class="btn">
+                <span class="icon ion-shuffle"></span>
+                Switch to {{site.display_name}}</button>
+            {% endif %}
+        {% endfor %}
+        </form>
+    {% endif %}
+    </div>
+</div>
+<div class="row">
+    <div class="col-md-12">
+        <h1>{{site_title}} <a href="{{url_preview}}"><span class="icon ion-arrow-right-c"></span></a></h1>
+    </div>
+</div>
+<div class="row">
+    <div class="col-md-6">
+        <h2><span class="icon ion-stats-bars"></span> Site Summary</h2>
+        {% for s in sources %}
+        <div class="ft-summary-source">
+            <a href="{{s.list_url}}">{{s.page_count}} {{s.name}}</a>
+        </div>
+        {% endfor %}
+    </div>
+    <div class="col-md-6">
+        <h2><span class="icon ion-erlenmeyer-flask"></span> Work in Progress</h2>
+        {% if new_pages %}
+        <p>New pages:</p>
+        <ul>
+            {% for p in new_pages %}
+            <li><a href="{{p.url}}">{{p.title}}</a><br/>
+                {%if p.text%}<pre>{{p.text}}</pre>{%endif%}</li>
+            {% endfor %}
+        </ul>
+        {% endif %}
+        {% if edited_pages %}
+        <p>Edited pages:</p>
+        <ul>
+            {% for p in edited_pages %}
+            <li><a href="{{p.url}}">{{p.title}}</a><br/>
+                {%if p.text%}<pre>{{p.text}}</pre>{%endif%}</li>
+            {% endfor %}
+        </ul>
+        {% endif %}
+        {% if not new_pages and not edited_pages %}
+        <p>No work in progress.</p>
+        {% endif %}
+        {% if misc_files %}
+        <div class="ft-dash-misc">
+        <p>Miscellaneous new/edited files:</p>
+        <ul>
+            {% for p in misc_files %}
+            <li>{{p}}</li>
+            {% endfor %}
+        </ul>
+        </div>
+        {% endif %}
+
+    </div>
+</div>
+{% endblock %}
+