November 2015
Beginner to intermediate
840 pages
26h 30m
English
Tag ObjectsUnlike the template for creating or deleting Tag objects, the form for deleting Tag objects doesn’t need to take any information and therefore doesn’t need to display TagForm. Instead, we’re creating a template that asks the user for confirmation of the removal of data.
We start by extending the base app template, and overriding the title and content blocks, as shown in Example 8.29.
Example 8.29: Project Code
organizer/templates/organizer/tag_confirm_delete.html in 7a857b7c54
1 {% extends parent_template|default:"organizer/base_organizer.html" %} 2 3 {% block title %} 4 {{ block.super }} - Delete Tag 5 {% endblock %} 6 7 {% block content %} . ... ...
Read now
Unlock full access