2017-09-05 19:29:42 -04:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="container-fluid bg-dark-primary p-3">
|
|
|
|
<div class="container">
|
|
|
|
<a class="text-white text-center d-block mx-auto curs-pointer" data-toggle="collapse" data-target="#search-filters" aria-expanded="false" aria-controls="search-filters">
|
|
|
|
Search
|
|
|
|
<br>
|
|
|
|
<img class="mx-auto" src="{% static 'main/img/arrow.png' %}">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="search-filters" class="container-fluid bg-dark-primary text-white collapse">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row py-3">
|
|
|
|
{% for header in allHeaders %}
|
2017-09-05 22:13:47 -04:00
|
|
|
<div class="col-xs-12 col-sm-6 col-md-4">
|
|
|
|
<input id="input-{{ header.id }}" class="curs-pointer filters" name="filter" type="checkbox" value="{{ header }}">
|
2017-09-05 19:29:42 -04:00
|
|
|
<label for="input-{{ header.id }}" class="curs-pointer">{{ header }}</label>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
<div class="col-12">
|
2017-09-05 22:13:47 -04:00
|
|
|
<button id="search" class="btn btn-secondary d-block mx-auto"><i class="fa fa-search"></i> Search</button>
|
2017-09-05 19:29:42 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container-fluid bg-light-blue">
|
|
|
|
<div class="container bg-white p-0">
|
|
|
|
{% if url %}
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="breadcrumb-item">
|
|
|
|
<a href="{% url 'browser' %}"><i class="fa fa-home"></i></a>
|
|
|
|
</li>
|
|
|
|
{% for item in urls %}
|
|
|
|
<li class="breadcrumb-item{% if forloop.last %} active{% endif %}">
|
|
|
|
<a {% if not forloop.last %}href="{% url 'browser' %}?path={% for item2 in urls %}{% if forloop.counter0 <= forloop.parentloop.counter0%}{{ item }}{% endif %}{% endfor %}"{% endif %}>
|
|
|
|
{{ item }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ol>
|
|
|
|
{% endif %}
|
2017-09-05 22:13:47 -04:00
|
|
|
{% if filter %}
|
|
|
|
<div class="col-12 p-3" style="background-color: #e9ecef;">
|
|
|
|
Filters:
|
|
|
|
{% for item in filter %}
|
|
|
|
<span class="badge badge-primary">{{ item }}</span>
|
|
|
|
{% endfor %}
|
|
|
|
<span class="badge badge-danger"><a class="text-white" href="{% url 'browser' %}">× Clear Filters</a></span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2017-09-05 19:29:42 -04:00
|
|
|
<div class="row p-3">
|
|
|
|
<div class="col-lg-12 ml-auto text-dark-primary">
|
2017-09-05 22:13:47 -04:00
|
|
|
{% if headersCount > 1 and decisionsCount > 1 and not filter %}
|
2017-09-05 19:29:42 -04:00
|
|
|
<h4>Headings</h4>
|
|
|
|
<hr>
|
|
|
|
{% for header in headers %}
|
|
|
|
<div>
|
|
|
|
<a href="{% url 'browser' %}?path={% if url %}{{ url }}/{% endif %}{{ header }}">
|
2017-09-05 22:13:47 -04:00
|
|
|
<h4 class="d-inline-block"><i class="fa fa-folder-open-o"></i> {{ header }}</h4>
|
2017-09-05 19:29:42 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
<br>
|
|
|
|
{% endif %}
|
|
|
|
<h4>Decisions</h4>
|
|
|
|
<hr>
|
|
|
|
{% for decision in decisions %}
|
|
|
|
<div>
|
|
|
|
<a href="{% url 'case' decision.id %}">
|
2017-09-05 22:13:47 -04:00
|
|
|
<h4 class="d-inline-block"><i class="fa fa-file-text-o"></i> {{ decision.synopsis }}</h4>
|
2017-09-05 19:29:42 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container-fluid bg-dark-primary p-2">
|
|
|
|
<div class="container text-white">
|
|
|
|
{% if headersCount %}{{ headersCount }} Headers, {% endif %}{{ decisionsCount }} Decision{% if decisionsCount > 1 %}s{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-09-05 22:13:47 -04:00
|
|
|
|
|
|
|
<script>
|
|
|
|
$('#search').click(function() {
|
|
|
|
var selected = $('input.filters').filter(function(i, e) {
|
|
|
|
return $(e).is(':checked')
|
|
|
|
}).map(function(i, e) {
|
|
|
|
return $(e).val()
|
|
|
|
});
|
|
|
|
|
|
|
|
window.location.href = '{% url 'browser' %}?filter=' + selected.toArray().join('/');
|
|
|
|
})
|
|
|
|
</script>
|
2017-09-05 19:29:42 -04:00
|
|
|
{% endblock %}
|