umap/youmap/templates/leaflet_storage/map_detail.html

20 lines
586 B
HTML
Raw Normal View History

2012-12-22 05:42:29 -06:00
{% extends "base.html" %}
{% load leaflet_storage_tags compress %}
2012-12-22 05:42:29 -06:00
{% block title %}{{ map.name }}{% endblock %}
2012-12-22 05:52:45 -06:00
{% block body_class %}map_detail{% endblock %}
2012-12-22 05:42:29 -06:00
{% block extra_head %}
{% compress css %}
{% leaflet_storage_css %}
2012-12-22 05:47:20 -06:00
<link rel="stylesheet" href="{{ STATIC_URL }}storage/contrib/css/storage.ui.default.css">
2012-12-22 05:42:29 -06:00
{% endcompress %}
{% compress js %}
{% leaflet_storage_js %}
2012-12-22 05:42:29 -06:00
{% endcompress %}
{% endblock %}
{% block content %}
{% block map_init %}
{% include "leaflet_storage/map_init.html" %}
2012-12-22 05:42:29 -06:00
{% endblock %}
{% endblock %}