Project

General

Profile

Download (895 Bytes) Statistics
| Branch: | Tag: | Revision:

calebasse / calebasse / agenda / templates / agenda / base.html @ a5a20700

1
{% extends "calebasse/base.html" %}
2
{% load url from future %}
3

    
4
{% block extrascripts %}
5
<script src="{{ STATIC_URL }}js/calebasse.agenda.js"></script>
6
{% endblock %}
7

    
8
{% block title %}{{ block.super }} - Agenda {% endblock %}
9

    
10
{% block header %}
11
  {{ block.super }}
12
  <span>Agenda - {{ service_name }}</spam>
13
{% endblock %}
14

    
15
{% block content %}
16
<div class="content">
17
   <div id="datesel">
18
     <a href="{% url url_name date=previous_month service=service %}">««</a>
19
     <a href="{% url url_name date=previous_day service=service %}">«</a>
20
     <input data-url="{% url url_name date=date service=service %}" id="agenda-date" value="{{ date|date:"DATE_FORMAT" }}"/>
21
     <a href="{% url url_name date=next_day service=service %}">»</a>
22
     <a href="{% url url_name date=next_month service=service %}">»»</a>
23
   </div>
24
   {% block agenda-content %}
25
   {% endblock %}
26
</div>
27
{% endblock %}
(3-3/8)