Link Button

list.html

{%  for author in authors %}
{{author.name}}
{{author.birth_date}}
<a href="{% url 'edit_author'  author.name %}"> Edit </a>
<a href="{% url 'delete_author'  author.name %}"> Delete </a>
{% endfor %}

<a href="{% url 'create_author'%}"> Create Author </a>

Last updated