blob: b3eabe1a26b41ec92605092efb868c1ceb31a70b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001{% extends "baseprojectpage.html" %}
2{% 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 %}