1
0

Initial Commit

This commit is contained in:
2017-12-31 03:40:56 +03:00
commit 4dbb509588
18 changed files with 343 additions and 0 deletions

14
app/views.py Normal file
View File

@@ -0,0 +1,14 @@
from django.shortcuts import render
from django.utils.translation import gettext as _
from django.conf import settings
# Create your views here.
def home(request):
return render(request, 'home.html', {
'title': _('Home'),
'app_name': settings.APP_NAME,
'app_description_text': get_setting('app_description_text'),
})