9 lines
210 B
HTML
9 lines
210 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Documents for {{ ad_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Documents for {{ ad_name }}</h1>
|
|
{% include "doc/search/search_results.html" %}
|
|
{% endblock %}
|