9 lines
166 B
HTML
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 %}
|