(self, **kwargs)
| 1083 | authentication_form = AdminLoginForm |
| 1084 | |
| 1085 | def get_context_data(self, **kwargs): |
| 1086 | context = super().get_context_data(**kwargs) |
| 1087 | context["site_title"] = "VulnerableCode site admin" |
| 1088 | context["site_header"] = "VulnerableCode Administration" |
| 1089 | return context |
| 1090 | |
| 1091 | |
| 1092 | class AdvisoryToDoListView(ListView, FormMixin): |
nothing calls this directly
no test coverage detected