-
Notifications
You must be signed in to change notification settings - Fork 7
/
layer_list.html
40 lines (36 loc) · 1.25 KB
/
layer_list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "layers/layer_base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %} {% trans "Explore Layers" %} - {{ block.super }} {% endblock %}
{% block body_class %}layers explore{% endblock %}
{% block body %}
<div class="page-header">
<a href="{% url "layer_upload" %}" class="btn btn-primary pull-right">{% trans "Upload Layers" %}</a>
<h2 class="page-title">{% trans "Explore Layers" %}</h2>
</div>
{% with include_type_filter='true' %}
{% with header='Type' %}
{% with filter='type__in' %}
{% include "search/_search_content.html" %}
{% endwith %}
{% endwith %}
{% endwith %}
{% include "_bulk_permissions_form.html" %}
{% endblock %}
{% block extra_script %}
{{ block.super }}
{% if GEONODE_SECURITY_ENABLED %}
{% include "_permissions_form_js.html" %}
{% endif %}
<script type="text/javascript">
{% if HAYSTACK_SEARCH %}
SEARCH_URL = '{% url 'api_get_search' api_name='api' resource_name='base' %}?type__in=layer'
{% else %}
SEARCH_URL = '{% url 'api_dispatch_list' api_name='wm_api' resource_name='layers' %}';
{% endif %}
FILTER_TYPE = 'layer';
</script>
{% with include_spatial='true' %}
{% include 'search/search_scripts.html' %}
{% endwith %}
{% endblock extra_script %}