aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/admin/notifications
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/admin/notifications
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/templates/admin/notifications')
-rw-r--r--servo/templates/admin/notifications/form.html5
-rw-r--r--servo/templates/admin/notifications/index.html39
2 files changed, 44 insertions, 0 deletions
diff --git a/servo/templates/admin/notifications/form.html b/servo/templates/admin/notifications/form.html
new file mode 100644
index 0000000..ce4a8f9
--- /dev/null
+++ b/servo/templates/admin/notifications/form.html
@@ -0,0 +1,5 @@
+{% extends "admin/index.html" %}
+
+{% block admin_content %}
+
+{% endblock admin_content %}
diff --git a/servo/templates/admin/notifications/index.html b/servo/templates/admin/notifications/index.html
new file mode 100644
index 0000000..1fd05a0
--- /dev/null
+++ b/servo/templates/admin/notifications/index.html
@@ -0,0 +1,39 @@
+{% extends "admin/index.html" %}
+{% load i18n %}
+
+{% block second_column %}
+<ul class="nav nav-tabs">
+ <li class="active"><a href="#">{% trans "Reports" %}</a></li>
+</ul>
+
+<form method="post" action="">
+ {% csrf_token %}
+ <table class="table">
+ <thead>
+ <tr>
+ <th></th>
+ <th>{% trans "Daily" %}</th>
+ <th>{% trans "Weekly" %}</th>
+ <th>{% trans "Monthly" %}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{% trans "Repairs aging beyond limits" %}</td>
+ <td><input type="checkbox"/></td>
+ <td><input type="checkbox"/></td>
+ <td><input type="checkbox"/></td>
+ </tr>
+ <tr>
+ <td>{% trans "Products below stocking limit" %}</td>
+ <td><input type="checkbox"/></td>
+ <td><input type="checkbox"/></td>
+ <td><input type="checkbox"/></td>
+ </tr>
+ </tbody>
+ </table>
+ <div class="form-actions">
+ <button type="submit" class="btn btn-primary pull-right">{% trans "Save" %}</button>
+ </div>
+</form>
+{% endblock second_column %}