gazetteer/gazetteer/templates/admin/places/feature/change_form.html

43 lines
1.3 KiB
HTML

{% extends 'admin/change_form.html' %}
{% block extrahead %}
{{ block.super }}
<script type="text/javascript" src="/static/js/jquery.js"></script>
<script type="text/javascript" src="/static/js/jquery.autocomplete.min.js"></script>
<!-- jquery autocomplete from: https://github.com/agarzola/jQueryAutocompletePlugin -->
<script type="text/javascript" src="/static/js/feature_admin.js"></script>
<link rel="stylesheet" href="/static/css/feature_admin.css" />
<link rel="stylesheet" href="/static/css/jquery.autocomplete.css" />
<script type="text/javascript">
FEATURE_ID = {{ object_id }}
</script>
{% endblock %}
{% block after_related_objects %}
<div id="similarFeatures">
<div class="tableTitle">Similar Features:</div>
<table id="similarTable">
<thead>
<tr>
<td>
Name
</td>
<td>
Feature Type
</td>
<td>
Similarity
</td>
<td>
Distance
</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
{% endblock %}