Add instance settings.

Addresses: #58

Currently implemented:

* Instance name
* Instance description
* Code of conduct
* Allow registration

I decided to store this in the database so that settings can be easily
changed at runtime through the web interface. (This web interface does
not exist.)
This commit is contained in:
Adam Kelly
2020-06-01 19:54:08 +01:00
parent 4d6ecafcf4
commit 92a669ffaf
6 changed files with 72 additions and 1 deletions

View File

@ -208,12 +208,21 @@ def login_page(request):
''' authentication '''
# send user to the login page
data = {
'site_settings': models.SiteSettings.get(),
'login_form': forms.LoginForm(),
'register_form': forms.RegisterForm(),
}
return TemplateResponse(request, 'login.html', data)
def about_page(request):
''' more information about the instance '''
data = {
'site_settings': models.SiteSettings.get(),
}
return TemplateResponse(request, 'about.html', data)
@login_required
def notifications_page(request):
''' list notitications '''