diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index 009e8b1705..f1f89536e3 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -3,13 +3,13 @@ from __future__ import absolute_import import os from django import forms -from django.utils.translation import ugettext_lazy as _ -from django.db import models -from django.contrib.auth.models import User -from django.contrib.auth.forms import AuthenticationForm -from django.contrib.auth import authenticate from django.conf import settings +from django.contrib.auth import authenticate +from django.contrib.auth.forms import AuthenticationForm +from django.contrib.auth.models import User +from django.db import models from django.utils.html import escape +from django.utils.translation import ugettext_lazy as _ from .utils import return_attrib from .widgets import (DetailSelectMultiple, PlainWidget, TextAreaDiv, diff --git a/mayan/apps/common/templates/generic_detail_subtemplate.html b/mayan/apps/common/templates/generic_detail_subtemplate.html index f8dfd58fe7..f95cb66f83 100644 --- a/mayan/apps/common/templates/generic_detail_subtemplate.html +++ b/mayan/apps/common/templates/generic_detail_subtemplate.html @@ -14,7 +14,7 @@ {% if form %} {% with 'true' as read_only %}
- {% include "generic_form_subtemplate.html" %} + {% include 'generic_form_subtemplate.html' %}
{% endwith %} {% endif %}