Se me olvido cambiar el nombre de id a el correspondiente

This commit is contained in:
Daniel Cortes
2019-03-12 17:16:09 -03:00
parent 3b5008f9ed
commit 7b7fd0301d
5 changed files with 9 additions and 8 deletions

View File

@@ -6,7 +6,7 @@
<h4>Categories</h4>
<div class="grid">
{% for category in categories %}
<a href="{{ url_for('categories.view', id=category.id) }}">{{ category.name }}</a>
<a href="{{ url_for('categories.view', category_id=category.id) }}">{{ category.name }}</a>
{% endfor %}
</div>
{% endblock %}