Corrected value to id property of entry

This commit is contained in:
Vivek Santayana 2023-02-28 20:59:12 +00:00
parent b2c9bdd7d2
commit a2c52a4261

View File

@ -71,7 +71,7 @@
{% for entry in test.entries %}
<tr>
<td>
<a href="{{ url_for('admin._view_entry', id=entry) }}" >Entry {{ loop.index }}</a>
<a href="{{ url_for('admin._view_entry', id=entry.id) }}" >Entry {{ loop.index }}</a>
</td>
</tr>
{% endfor %}