term_search_results.html 289 B

12345678910111213
  1. <div id="search-results">
  2. {% if qres %}
  3. <h2>Search Results</h2>
  4. <ol>
  5. {% for uri in qres %}
  6. <li><a href="{{gl(uri)}}">{{uri}}</a></li>
  7. {% else %}
  8. <p class="bg-warning">No resources match the given criteria.</p>
  9. {% endfor %}
  10. </ol>
  11. {% endif %}
  12. </div>