Update lots of things

This commit is contained in:
Livvy Mackintosh
2017-06-16 18:06:22 +02:00
parent 90b508e3b0
commit 0811936382
23 changed files with 557 additions and 106 deletions

View File

@ -0,0 +1,24 @@
{% extends "map/base_with_container.html" %}
{% load compress %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load leaflet_tags %}
{% block stylesheets %}
{{ block.super }}
{% leaflet_css %}
<style> html, body, #main { width: 100; height:100%; } </style>
{% endblock %}
{% block title %}{% trans "Submit a Case Study" %}{% endblock %}
{% block description %}{% trans "Here you can submit a case study for review and it will be added to the map." %}{% endblock %}
{% block content %}
{% crispy form %}
{% endblock %}
{% block scripts %}
{% leaflet_js %}
{% endblock %}