mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix acl.py lower
This commit is contained in:
parent
b5513db8ae
commit
53079c0a9e
1 changed files with 2 additions and 2 deletions
|
@ -95,11 +95,11 @@ def get_model(model_name):
|
|||
try:
|
||||
if app_label is not None:
|
||||
content_type = ContentType.objects.get(
|
||||
model=name,
|
||||
model=name.lower(),
|
||||
app_label=app_label
|
||||
)
|
||||
else:
|
||||
content_type = ContentType.objects.get(model=name)
|
||||
content_type = ContentType.objects.get(model=name.lower())
|
||||
except ContentType.DoesNotExist:
|
||||
raise template.TemplateSyntaxError(
|
||||
"%r is not a valid model for an acl tag" % model_name
|
||||
|
|
Loading…
Reference in a new issue