Files
mayan-edms/apps/dynamic_search/templates/search_results.html
Roberto Rosario 327a00ede6 Added search app
2011-02-03 22:52:25 -04:00

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 %}