8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 13:14:06 +00:00

Merge branch 'easier_acl' into 'master'

Fix acl.py lower

See merge request federez/re2o!206
This commit is contained in:
chirac 2018-07-28 23:16:56 +02:00
commit 9be8ca1cf4

View file

@ -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