19 lines
413 B
HTML
Executable File
19 lines
413 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block title %} :: {% trans 'Search results' %}{% endblock %}
|
|
{% block content %}
|
|
|
|
{% with 'get' as submit_method %}
|
|
{% with form_title as title %}
|
|
{% include 'generic_form_subtemplate.html' %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
|
|
{% if query_string %}
|
|
{% include 'generic_list_subtemplate.html' %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|