friendsmap/map/templates/map/share_location.html

25 lines
788 B
HTML

{% extends 'map/base_change.html' %}
{% load crispy_forms_filters %}
{% block title %}Share your location{% endblock %}
{% block h1 %}Share your location{% endblock %}
{% block notice %}
<div class="alert alert-info">
<h4 class="alert-heading">Notice</h4>
<div>
Select here who you want to share your location to.
Only selected users will be able to see your marker on the map.
</div>
</div>
{% endblock %}
{% block add-head %}
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.2/css/bootstrap-select.min.css">
{% endblock %}
{% block js %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.2/js/bootstrap-select.min.js"></script>
{% endblock %}