blob: 99fbb38970a487a78eb0952b289a66b4dfd484b9 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001{% extends project_specific|yesno:"baseprojectspecificpage.html,baseprojectpage.html" %}
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002{% load projecttags %}
3{% load humanize %}
4{% load static %}
5
6{% block projectinfomain %}
7
8<h2>{{title}} (<span class="table-count-{{table_name}}"></span>)
9 {% if project.release %}
Patrick Williamsc0f7c042017-02-23 20:41:17 -060010 <i class="glyphicon glyphicon-question-sign get-help" title="This page lists {{title|lower}} compatible with the release selected for this project, which is {{project.release.description}}"></i>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011 {% endif %}
12</h2>
13
14{% url table_name project.id as xhr_table_url %}
15{% include "toastertable.html" %}
16
17{% endblock %}