reversion

This commit is contained in:
zandercymatics 2024-03-08 14:41:21 -07:00
parent d189fffa84
commit 9628c42dd6
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -66,7 +66,7 @@ class DomainRequestPermissionView(DomainRequestPermission, DetailView, abc.ABC):
# DetailView property for what model this is viewing
model = DomainRequest
# variable name in template context for the model object
context_object_name = "domainrequest"
context_object_name = "DomainRequest"
# Abstract property enforces NotImplementedError on an attribute.
@property
@ -85,7 +85,7 @@ class DomainRequestPermissionWithdrawView(DomainRequestPermissionWithdraw, Detai
# DetailView property for what model this is viewing
model = DomainRequest
# variable name in template context for the model object
context_object_name = "domainrequest"
context_object_name = "DomainRequest"
# Abstract property enforces NotImplementedError on an attribute.
@property