summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/nodetype_archive_month.html
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
committergnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
commit7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch)
treed2afc3463fd49625a9be482012f5c3bfcf7c42b9 /gstudio/templates/gstudio/nodetype_archive_month.html
downloadgnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz
master trunk of gnowsys-studio
Diffstat (limited to 'gstudio/templates/gstudio/nodetype_archive_month.html')
-rw-r--r--gstudio/templates/gstudio/nodetype_archive_month.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/nodetype_archive_month.html b/gstudio/templates/gstudio/nodetype_archive_month.html
new file mode 100644
index 0000000..e09d0d7
--- /dev/null
+++ b/gstudio/templates/gstudio/nodetype_archive_month.html
@@ -0,0 +1,31 @@
+{% extends "gstudio/nodetype_list.html" %}
+{% load i18n %}
+
+{% block meta-description %}{% trans "Archives" %} {{ month|date:"YEAR_MONTH_FORMAT" }}{% endblock %}
+
+{% block title %}{% trans "Archives" %} {{ month|date:"YEAR_MONTH_FORMAT" }}{% endblock %}
+
+{% block content %}
+<h1>{% trans "Archives" %} {{ month|date:"YEAR_MONTH_FORMAT" }}</h1>
+
+{{ block.super }}
+
+<h2>{% trans "Daily archives" %}</h2>
+<ul>
+ {% for date in date_list %}
+ <li>
+ <a href="{% url gstudio_nodetype_archive_day date|date:"Y" date|date:"m" date|date:"d" %}" rel="archives">{{ date|date:"DATE_FORMAT" }}</a>
+ </li>
+ {% endfor %}
+</ul>
+<!--<ul>
+ <li>
+ <a href="{% url gstudio_nodetype_archive_month previous_month|date:"Y" previous_month|date:"m" %}" rel="archives">{{ previous_month|date:"YEAR_MONTH_FORMAT" }}</a>
+ </li>
+ {% if next_month %}
+ <li>
+ <a href="{% url gstudio_nodetype_archive_month next_month|date:"Y" next_month|date:"m" %}" rel="archives">{{ next_month|date:"YEAR_MONTH_FORMAT" }}</a>
+ </li>
+ {% endif %}
+</ul>-->
+{% endblock %}