16 lines
398 B
HTML
16 lines
398 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{# For multiple results, maybe make a top results overview and then a navigation menu to specific URL pages? See: https://realpython.com/primer-on-jinja-templating/#include-a-navigation-menu #}
|
|
|
|
{% include "forms.html" %}
|
|
|
|
{% include "results-overview.html" %}
|
|
|
|
{% include "results-detail.html" %}
|
|
|
|
{% include "empty_form.html" %}
|
|
|
|
{% endblock %}
|