Exercises or next steps
There’s always room for bug fixes and enhancements! Consider exploring on your own any or all of the following possibilities:
- The ACL Entries table has a column header of Acl, which should really say ACL. This is easy to fix by adding a
verbose_name
attribute on theColumn
declaration in yourtables.py
file. - The create/edit form for ACL records doesn’t have a field to let you specify tags to attach to the ACL at present. Can you see what’s missing in the
ACLForm
definition to fix this? - It would be nice if the detail view for a given ACL included a listing of all associated
ACLEntry
records in order. How might you go about extending theacl_retrieve.html
template to do that? - The IP ACLs menu is currently missing the add buttons that most Nautobot models provide in their menus. Refer back to Chapter 14 for examples of how you might add these.
- Currently, the Edit Selected and Delete Selected buttons on the table/list...