From 63b0fc6269b38edf7234b9f151b80d81f614c0a3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 4 Aug 2015 10:11:24 +0300 Subject: Initial commit First public commit --- servo/templates/accounts/updates.html | 65 +++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 servo/templates/accounts/updates.html (limited to 'servo/templates/accounts/updates.html') diff --git a/servo/templates/accounts/updates.html b/servo/templates/accounts/updates.html new file mode 100644 index 0000000..121aea9 --- /dev/null +++ b/servo/templates/accounts/updates.html @@ -0,0 +1,65 @@ +{% extends "default.html" %} +{% load humanize %} +{% load i18n %} + +{% block toolbar %} +{% if perms.servo.add_order %} + {% trans "Clear all" %} +{% endif %} +{% endblock toolbar %} + +{% block content %} + +
+
+ {% include "accounts/tabs.html" %} +
+
+{% block second_row %} +
+
+ +
+
+ + + + + + + + + + + + {% for event in events %} + + + + + + + + {% endfor %} + +
{% trans "Event" %}{% trans "Order" %}
{{ event.description }}{{ event.description }}{{ event.content_object }}{{ event.triggered_by }}
+ {{ event.triggered_at|naturaltime }}
+ {% include "pagination.html" with items=events %} +
+
+ +{% endblock second_row %} + +{% endblock content %} + +{% block crumbs %} +
  • {% trans "Updates" %}
  • +{% endblock crumbs %} -- cgit v1.2.3