]> git.0d.be Git - panikweb.git/blobdiff - panikweb_templates/templates/agenda.html
move static & templates to panikweb project directory
[panikweb.git] / panikweb_templates / templates / agenda.html
diff --git a/panikweb_templates/templates/agenda.html b/panikweb_templates/templates/agenda.html
deleted file mode 100644 (file)
index a4b1e67..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-{% extends "base.html"%}
-{% load paniktags i18n %}
-{% block title %}{% trans 'News' %}{% endblock %}
-{% block toptitle %}
-<h1 class="top"><a class="dimmed" href="{% url 'news' %}">{% trans 'News' %}</a>
- / <a href="{% url 'agenda' %}">Agenda</a>
-</h1>
-{% endblock %}
-{% block nav %}
-       {% news_nav %}
-{% endblock %}
-{% block main %}
-
-<div class="detail marged news cf">
-       <div class="wrapper navigation">
-{% if month %}
-<h2>{{month|date:"E Y"}}</h2>
-{% else %}
-<p class="intro leftPart">
-Sur les ondes comme dans la ville, une quantité d'événements Panik et proches…
-</p>
-{% endif %}
-
-               <div class="leftPart">
-            <div id="agenda" class="news">
-               {% regroup agenda|dictsort:'event_date' by event_date as agenda_list %}
-                 {% for date in agenda_list %}
-                 <h3>{{ date.grouper|date:"l d E"|lower }}</h3>
-                 {% for content in date.list %}
-                   {% news_inline %}
-                 {% endfor %}
-               {% endfor %}
-               {% if not agenda %}
-                       <div class="big error center">Misère, c'est l'hiver ?!</div>
-               {% endif %}
-
-    <div class="previous-and-next-months">
-<h4>
-    {% if previous_month %}
-        <a href="{% url 'agenda_by_month' year=previous_month.year month=previous_month.month %}"
-           >&lt; {{previous_month|date:'E Y'}}</a>
-    {% endif %}
-    {% if previous_month and next_month %}—{% endif %}
-    {% if next_month %}
-        <a href="{% url 'agenda_by_month' year=next_month.year month=next_month.month %}"
-           >{{next_month|date:'E Y'}} &gt;</a>
-    {% endif %}
-</h4>
-    </div>
-
-            </div>
-               </div>
-               <div class="rightPart">
-                               <div class="sub">
-                                       <h5 class="sectionLabel right">
-                        <a href="{% url 'newsArchives' %}">
-                                           <span class="iconLabel">Toutes</span>
-                                   </a>
-                    </h5>
-                                       <h5 class="sectionLabel">
-                            <span class="iconLabel">{% trans 'Latest News'%}</span>
-                            <a class="button icon-rss inBlock" href="{% url 'rss-feed' %}"></a>
-                    </h5>
-
-
-       <form action="{% url 'newsArchives' %}" id="search-form">
-               <input id="id_q" name="q" type="text" {% if search_query %}value="{{ search_query }}"{% endif %}>
-                <button class="icon-search"><span class="sr-only">{% trans "Search" %}</span></button>
-       </form>
-
-                                               <ul class="custom list newsList">
-                                               {% for content in news|slice:":20" %}
-                                                       <li class="{% if content == newsitem %}current{% endif %}">{% news_inline %}</li>
-                                               {% endfor %}
-                                               </ul>
-                               </div>
-               </div>
-       </div>
-</div>
-{% endblock %}
-{% block links %}
-<div class="wrapper">
-       <div class="padded ">
-               <ul class="news columns padded list custom">
-               {% for NewsItem in newsAll %}
-                       <li class="item ellipsis small  ">
-                       <a href="{% url 'newsitem-view' slug=NewsItem.slug %}">
-                               <span class="title"><strong>{{ NewsItem.date|date:"D d/M" }}</strong>&nbsp;-&nbsp;{{ NewsItem.title }}</span>
-                       </a>
-                       </li>
-               {% endfor %}
-               </ul>
-       </div>
-    </div>
-</div>
-{% endblock %}