summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/calendar.html
blob: bf6e999f87970a7e007dbcb52949c36dcd04a4c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ calendar|safe }}
<div class="month-navigation">
  <div class="month-previous">
    {% if previous_month %}
    <a href="{% url gstudio_nodetype_archive_month previous_month|date:"Y" previous_month|date:"m" %}">
      &lt;&lt; {{ previous_month|date:"YEAR_MONTH_FORMAT" }}
    </a>
    {% endif %}
  </div>
  <div class="month-next">
    {% if next_month %}
    <a href="{% url gstudio_nodetype_archive_month next_month|date:"Y" next_month|date:"m" %}">
      {{ next_month|date:"YEAR_MONTH_FORMAT" }} &gt;&gt;
    </a>
    {% endif %}
  </div>
</div>