Updated case law browser
This commit is contained in:
parent
0f484d1d0b
commit
607857457b
@ -25,7 +25,6 @@ urlpatterns = [
|
||||
url(r'^admin/logout', main.views.logout, name='logout'),
|
||||
url(r'^admin/', admin.site.urls, name='admin'),
|
||||
url(r'^attorney/(?P<id>\d+)', charter_members.views.index, name='attorney'),
|
||||
url(r'^caselaw/(?P<id>\d+)', case_law.views.case, name='case'),
|
||||
url(r'^caselaw/', case_law.views.browser, name='browser'),
|
||||
url(r'^media/secure/(?P<path>.*)$', protected_serve, {'document_root': os.path.join(settings.MEDIA_ROOT, 'secure')}, name='secure media'),
|
||||
url(r'^media/(?P<path>.*)$', serve, {'document_root': settings.MEDIA_ROOT}, name='media'),
|
||||
|
@ -2,85 +2,98 @@
|
||||
{% 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 heading in allHeadings %}
|
||||
<div class="col-xs-12 col-sm-6 col-md-4">
|
||||
<input id="input-{{ heading.id }}" class="curs-pointer filters" name="filter" type="checkbox" value="{{ heading }}">
|
||||
<label for="input-{{ heading.id }}" class="curs-pointer">{{ heading }}</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
<div class="col-12">
|
||||
<button id="search" class="btn btn-secondary d-block mx-auto"><i class="fa fa-search"></i> Search</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid bg-light-blue">
|
||||
<div class="container bg-white p-0">
|
||||
{% if url %}
|
||||
<ol class="breadcrumb">
|
||||
<style>
|
||||
.gradient {
|
||||
top: 0;
|
||||
transition: all 0.15s ease-in;
|
||||
opacity: 1;
|
||||
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 1) 100%);
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: table-cell;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.tc {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
a.cases:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.cases:hover .gradient {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
<div class="container-fluid bg-dark-primary">
|
||||
<div class="row">
|
||||
<ol class="col-12 mb-0 breadcrumb">
|
||||
<li class="breadcrumb-item">
|
||||
<a href="{% url 'browser' %}"><i class="fa fa-home"></i></a>
|
||||
<a href="{% url 'home' %}"><i class="fa fa-home"></i></a>
|
||||
</li>
|
||||
<li class="breadcrumb-item">
|
||||
<a href="{% url 'browser' %}">Case Law</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 %}>
|
||||
<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>
|
||||
<div class="col-md-3 text-white pt-5">
|
||||
<h4>Headings
|
||||
{% if headingCount > 1 and caseCount > 1 and not filter %}
|
||||
<span class="text-muted">({{ headingCount }})</span>
|
||||
{% endif %}
|
||||
{% 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 %}
|
||||
<div class="row p-3">
|
||||
<div class="col-lg-12 ml-auto text-dark-primary">
|
||||
{% if headingCount > 1 and headingCount > 1 and not filter %}
|
||||
<h4>Headings</h4>
|
||||
<hr>
|
||||
</h4>
|
||||
<hr style="border-color:#ffffff !important">
|
||||
{% if headingCount > 1 and caseCount > 1 and not filter %}
|
||||
{% for heading in headings %}
|
||||
<div>
|
||||
<a href="{% url 'browser' %}?path={% if url %}{{ url }}/{% endif %}{{ heading }}">
|
||||
<h4 class="d-inline-block"><i class="fa fa-folder-open-o"></i> {{ heading }}</h4>
|
||||
<h4 class="d-inline-block" style="color:#D8D8D8"><i
|
||||
class="fa fa-folder-open-o"></i> {{ heading }}
|
||||
</h4>
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
<br>
|
||||
{% endif %}
|
||||
<h4>Cases</h4>
|
||||
<hr>
|
||||
{% for case in cases %}
|
||||
<div>
|
||||
<a href="{% url 'case' case.id %}">
|
||||
<h4 class="d-inline-block"><i class="fa fa-file-text-o"></i> {{ case.synopsis }}</h4>
|
||||
</a>
|
||||
</div>
|
||||
<div class="{% if not filter %}col-md-9{% else %}col-12{% endif %} bg-light-blue pt-5">
|
||||
<h4>Cases <span class="text-muted">({{ caseCount }})</span></h4>
|
||||
<hr>
|
||||
<div class="row">
|
||||
{% for case in cases %}
|
||||
<a class="col-md-4 col-lg-3 mb-3 cases" target="_blank"
|
||||
{% if perms.case_law.view_pdf %}href="/media/{{ case.pdf }}"{% endif %}>
|
||||
<div class="card" style="overflow:hidden;">
|
||||
<div class="tc">
|
||||
<div class="card-header">
|
||||
<span class="text-muted">{{ case.published }}</span>
|
||||
</div>
|
||||
<div class="card-body" style="position:relative; height:150px; overflow:hidden;">
|
||||
<span class="card-text text-secondary">{{ case.synopsis | linebreaks }}</span>
|
||||
<div class="gradient">
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-footer p-1">
|
||||
{% for heading in case.headings.all|dictsort:'name' %}
|
||||
<span class="badge badge-primary">{{ heading.name }}</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid bg-dark-primary p-2">
|
||||
<div class="container text-white">
|
||||
{% if headingCount %}{{ headingCount }} Headings, {% endif %}{{ caseCount }} Case{% if caseCount > 1 %}s{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -1,19 +0,0 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block body %}
|
||||
<div class="container-fluid bg-light-blue py-3">
|
||||
<div class="container">
|
||||
<h3 class="text-dark-primary">Synopsis</h3>
|
||||
{% for heading in headings %}
|
||||
<span class="badge badge-primary">{{ heading }}</span>
|
||||
{% endfor %}
|
||||
<p>{{ case.synopsis | linebreaks }}</p>
|
||||
<h6 class="text-muted">Published: {{ case.published }}</h6>
|
||||
{% if perms.case_law.view_pdf %}
|
||||
<a href="/media/{{ case.pdf }}">View PDF</a>
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
@ -4,17 +4,9 @@ from .models import Case, Heading
|
||||
|
||||
|
||||
def browser(request):
|
||||
headings = {}
|
||||
path = request.GET.get('path')
|
||||
filter = request.GET.get('filter')
|
||||
cases = Case.objects.all()
|
||||
if filter:
|
||||
filter = filter.split('/')
|
||||
print(filter)
|
||||
ids = Heading.objects.filter(name__in=filter).values_list('id')
|
||||
for id in ids:
|
||||
cases = cases.filter(headings__in=id)
|
||||
elif path:
|
||||
if path:
|
||||
path = path.split('/')
|
||||
ids = Heading.objects.filter(name__in=path).values_list('id')
|
||||
for id in ids:
|
||||
@ -22,21 +14,15 @@ def browser(request):
|
||||
|
||||
headings = set()
|
||||
for decision in cases:
|
||||
headings = headings.union(decision.headings.all().values_list('name', flat=True))
|
||||
headings = headings | set(decision.headings.all().values_list('name', flat=True))
|
||||
if path: headings = headings.difference(path)
|
||||
|
||||
return render(request, 'browser.html', {
|
||||
'allHeadings': Heading.objects.all().order_by('name'),
|
||||
'cases': cases.order_by('synopsis'),
|
||||
'cases': cases.order_by('published'),
|
||||
'caseCount': len(cases),
|
||||
'filter': filter,
|
||||
'headings': sorted(headings),
|
||||
'headingCount': len(headings),
|
||||
'url': request.GET.get('path'),
|
||||
'urls': path
|
||||
})
|
||||
|
||||
|
||||
def case(request, id):
|
||||
case = Case.objects.get(id=id)
|
||||
return render(request, 'case.html', {'case': case, 'headings': case.headings.all()})
|
||||
|
@ -62,6 +62,10 @@ ul {
|
||||
color: #0F4C85 !important;
|
||||
}
|
||||
|
||||
.text-light-blue {
|
||||
color: #eaf4f6;
|
||||
}
|
||||
|
||||
.bg-dark-primary {
|
||||
background-color: #00305b;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user