diff --git a/project/accounts/templates/accounts/user_civis.html b/project/accounts/templates/accounts/user_civis.html new file mode 100644 index 00000000..99193e5a --- /dev/null +++ b/project/accounts/templates/accounts/user_civis.html @@ -0,0 +1,87 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} + {% for civi in civis %} +
+
+
+
{{ civi.c_type }}
+
{{ civi.title }}
+
+
+
+
{{ civi.votes.votes_vneg }}
+
+ thumb_down + thumb_down +
+
+
+
{{ civi.votes.votes_neg }}
+
+ thumb_down +
+
+
+
+ {{ civi.votes.votes_neutral }} +
+
+ remove +
+
+
+
{{ civi.votes.votes_pos }}
+
+ thumb_up +
+
+
+
{{ civi.votes.votes_vpos }}
+
+ thumb_up + thumb_up +
+
+
+
+
+
{{ civi.body }}
+
+ +
+ {% empty %} +
+
+
+
No activity
+
+
+
+ {% endfor %} + + +{% endblock content %}