Lint source code
This commit is contained in:
parent
45986cb0e8
commit
afcfc71e85
4 changed files with 58 additions and 2 deletions
|
|
@ -12,6 +12,8 @@ https://docs.djangoproject.com/en/2.2/ref/settings/
|
|||
|
||||
import os
|
||||
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||||
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
|
|
@ -121,7 +123,6 @@ USE_L10N = True
|
|||
USE_TZ = True
|
||||
|
||||
# Limit available languages to this subset
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
LANGUAGES = [
|
||||
('de', _('German')),
|
||||
('en', _('English')),
|
||||
|
|
|
|||
|
|
@ -29,4 +29,4 @@ urlpatterns = [
|
|||
]
|
||||
|
||||
if settings.DEBUG:
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
|
|
|||
|
|
@ -4,5 +4,6 @@
|
|||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
|
||||
class IndexView(LoginRequiredMixin, TemplateView):
|
||||
template_name = "index.html"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue