1
0
Fork 0

Mv station_edit modal outside h2

merge-requests/112/head
Nikos Roussos 2015-04-11 20:13:07 +03:00
parent 10d0c35ab6
commit 64e226d0f9
1 changed files with 6 additions and 3 deletions

View File

@ -18,10 +18,8 @@
{{ station.id }} - {{ station.name }}
{% if request.user == station.owner %}
<button class="btn btn-primary pull-right" data-toggle="modal" data-target="#StationModal">Edit Ground Station</button>
<!-- Station Modal -->
{% include 'includes/station_edit.html' %}
{% endif %}
</h2
</h2>
<div class="row">
<div class="col-md-4">
@ -88,6 +86,11 @@
<div id="map-station"></div>
</div>
</div>
{% if request.user == station.owner %}
<!-- Station Modal -->
{% include 'includes/station_edit.html' %}
{% endif %}
{% endblock content %}
{% block javascript %}