61 lines
1.1 KiB
HTML
61 lines
1.1 KiB
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
{% load leaflet_tags %}
|
|
|
|
{% block meta %}
|
|
{% leaflet_js %}
|
|
{% leaflet_css %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% include "monitorjobs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ course.name }} {% endblock %}
|
|
{% block og_title %}{{ course.name }} {% endblock %}
|
|
{% block main %}
|
|
|
|
<h1>Replace {{ course.name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
|
|
<li class="grid_2">
|
|
<p>
|
|
This updates the course {{ course.name }} with the course markers as shown on
|
|
the map below.
|
|
</p>
|
|
<form id="course_form" method="post">
|
|
<form id="course_form" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input class="button" type="submit" value="Submit">
|
|
</form>
|
|
</li>
|
|
<li class="grid_2">
|
|
<div class="mapdiv">
|
|
{{ mapdiv|safe }}
|
|
|
|
|
|
{{ mapscript|safe }}
|
|
</div>
|
|
</li>
|
|
<li class="grid_4">
|
|
<div class="mapdiv">
|
|
{{ mapdiv|safe }}
|
|
<script>
|
|
{{ mapscript|safe }}
|
|
</script>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_racing.html' %}
|
|
{% endblock %}
|