IDDRS/templates/App/results.html
2022-07-25 12:03:35 +02:00

118 lines
4.4 KiB
HTML

{% extends "App/base.html" %}
{% load app_filters %}
{% load static %}
{% block page_content %}
<div class="row justify-content-center">
<div class="col-lg-8">
<form class="d-flex align-items-center" id="searchForm" method="post">
{% csrf_token %}
{{ form.phrase }}
<button id="submitSearch" type="submit" class="btn-default">Search</button>
</form>
</div>
</div>
<form id="fiterForm" method="get">
<div class="d-flex justify-content-evenly mt-3">
{% for level in levels %}
<div class="btn-group ">
<button class="level-{{ level.levelNumber }} btn btn-sm dropdown-toggle " type="button"
data-bs-toggle="dropdown" data-bs-auto-close="outside" aria-expanded="false">
{{ level.levelName }}
</button>
<div class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start">
{% for standard in standards %}
{% if standard.standardLevel == level.levelNumber %}
<div class="form-check">
<input class="form-check-input" name="title" type="checkbox" value="{{ standard.standardTitle }}" {% if standard.standardTitle in selectedChoices %} checked {% endif %}
id="checkbox{{ standard.id }}">
<label class="form-check-label" for="checkbox{{ standard.id }}">
{{ standard.standardTitle }}
</label>
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</form>
<div class="mt-5">
{% if results %}
<h4>Results for: {{ phrase }}</h4>
{% endif %}
{% for result in results %}
<div class="card" data-bs-toggle="modal" data-bs-target="#staticBackdrop{{result.index}}">
<div class="card-header card-header-test1 level-text-{{ result.level|make_list|first }}">
Level {{ result.level|make_list|first }}, Standard {{result.module}}, Page {{result.pageNumber}}
</div>
<div class="card-body">
<h5 class="card-title">
{{result.heading1}}
</h5>
<p class="card-text">
{{result.paragraph | truncatewords:50}}
</p>
</div>
</div>
{% endfor %}
</div>
{% if results %}
<nav aria-label="Page navigation example">
<ul class="pagination">
{% for i in pages.page_range %}
{% if 'title' in request.get_full_path %}
<li class="page-item {% if i == pNumber %} active {% endif %}"><a class="page-link" href="{{ request.get_full_path }}&page={{ i }}">{{ i }}</a></li>
{% else %}
<li class="page-item {% if i == pNumber %} active {% endif %}"><a class="page-link" href="?page={{ i }}">{{ i }}</a></li>
{% endif %}
{% endfor %}
</ul>
</nav>
{% endif %}
{% for result in results %}
<!-- Modal -->
<div class="modal fade" id="staticBackdrop{{result.index}}" data-bs-backdrop="static" data-bs-keyboard="false"
tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<div class="" id="staticBackdropLabel{{result.index}}">
<p class="modal-level level-text-{{ result.level|make_list|first }}">Level {{result.level}}</p>
<p class="modal-module">Standard {{result.module}}</p>
<p class="modal-heading">{{result.heading1}}</p>
<p class="modal-heading modal-heading-2">{{result.heading2}}</p>
<p class="modal-heading modal-heading-3">{{result.heading3}}</p>
<p class="modal-heading modal-heading-4">{{result.heading4}}</p>
</div>
<button type="button" class="btn-close align-self-start" data-bs-dismiss="modal"
aria-label="Close"></button>
</div>
<div>
</div>
<div class="modal-body">
<p>{{ result.paragraph|highlight_search:result.sentence|safe }}</p>
<p class="text-end">Page: {{result.pageNumber}}</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
{% endfor %}
{% endblock %}