diff --git a/archivist/apps/templates/sites/twitter/overview.html b/archivist/apps/templates/sites/twitter/overview.html new file mode 100644 index 0000000..818da59 --- /dev/null +++ b/archivist/apps/templates/sites/twitter/overview.html @@ -0,0 +1,118 @@ +{% extends "layouts/base-electric.html" %} + +{% load static %} + +{% block title %} Sites {% endblock title %} + +{% block stylesheets %}{% endblock stylesheets %} + +{% block content %} + + {% include "includes/navigation-transparent.html" %} + +
+
+
+ +

Twitter Overview

+ +

+ + +

New Archived Posts:

+ + +
+
+ +
+
+ +

New Archived Users:

+
+
+ {% for user in new_users %} +
+ +
+ {% if user.banner %} + {{ user.artist }}'s banner + {% else %} + {% comment %}
{% endcomment %} + {{ user.artist }} has no banner + {% endif %} +
+
+ {% if user.icon %} + {{ user.artist }}'s banner + {% else %} + {% comment %}
{% endcomment %} + {{ user.artist }} has no icon + {% endif %} +
+
+
+
{{ user.artist }}
+

{{ user.description }}

+

Added on: {{ user.date_added }}

+
+
+
+ +
+ +
+ {% endfor %} +
+
+ +
+
+ +
+ +{% endblock content %} + + \ No newline at end of file