blob: 7d20fd7761ee4e7a811051782f8df66e32e07cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends "chimere/base.html" %}
{% load i18n unlocalize_point chimere_tags %}
{% block message_edit %}{% endblock %}
{% block sidebar %}
<div id='panel' class='draggable ui-widget ui-corner-all'>
<h2 class='ui-widget ui-state-default ui-corner-all ui-widget-header'>{% trans "Topics"%}</h2>
<form method='post' name='frm_categories' id='frm_categories'>
<div id='categories'>
<!-- Categories are displayed in JS -->
</div>
</form>
</div>
{% if areas_visible %}
{% display_areas %}
{% endif %}
<div id='detail' class='ui-widget ui-corner-all'></div>
<div id='category_detail'></div>
{% display_news news_visible %}
{% endblock %}
{% block content %}
<div id='map'></div>
{% map_params %}
<script type='text/javascript'><!--
$("#map").chimere(chimere_init_options);
// --></script>
{% endblock %}
|