23 lines
597 B
HTML
23 lines
597 B
HTML
{% extends "main.html" %}
|
|
|
|
{% load filters %}
|
|
{% load humanize %}
|
|
{% block content %}
|
|
<table style="width: 100%;">
|
|
<tr>
|
|
<td>
|
|
<h1>Products</h1>
|
|
</td>
|
|
<td style="text-align: right;">
|
|
<a href="{{ base_url }}product/"><span class="glyphicon glyphicon-plus"></span></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="list-group">
|
|
{% for p in products %}
|
|
<a href="{{ base_url }}product/{{ p.id }}" class="list-group-item list-group-item-action">{{ p.name }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|