edgware/edgware/templates/product_list.html
2010-07-29 01:03:47 +05:30

9 lines
166 B
HTML

{% extends 'base.html' %}
{% block content %}
{% for p in products %}
<a href="/edit/product/{{p.id}}/">{{ p.title }}</a><br />
{% endfor %}
{% endblock %}