Re-enable markdown safe mode
[pgweb/local.git] / templates / downloads / productlist.html
blob02439d7b5ed029a8fa2da317f6d4d02182b75bf3
1 {%extends "base/page.html"%}
2 {%load markup%}
3 {%block title%}Software Catalogue - {{category.catname}}{%endblock%}
4 {%block contents%}
6 <h1>Software Catalogue - {{category.catname}}</h1>
8 <p>{{productcount}} product(s) were found in this category.</p>
9 <p>{{category.blurb|safe}}</p>
11 {% for product in products %}
12 <h2 class="news"><a href="{{product.url}}" target="_blank">{{product.name}}</a></h2>
13 <table class="table table-striped">
14 <thead class="thead-light">
15 <tr>
16 <th scope="col" style="width: 60%">Description</th>
17 <th scope="col" style="width: 10%">License</th>
18 <th scope="col" style="width: 10%">Pricing</th>
19 <th scope="col" style="width: 20%">Publisher</th>
20 <th scope="col">&nbsp;</th>
21 </tr>
22 </thead>
23 <tbody>
24 <tr>
25 <td>{{product.description|markdown:"safe"}}</td>
26 <td>{{product.licencetype}}</td>
27 <td>{{product.price}}</td>
28 <td><a href="{{product.org.url}}" target="_blank">{{product.org.name}}</a></td>
29 <td><a href="{{product.url}}" target="_blank">View</a></td>
30 </tr>
31 </tbody>
32 </table>
33 <hr />
34 {% endfor %}
36 <p><em><strong>Note:</strong> The PostgreSQL Global Development Group do not endorse or
37 recommend any products listed, and cannot vouch for the quality or reliability
38 of any of them.</em></p>
40 {%endblock%}