2018-02-22 19:55:10 +00:00
|
|
|
from django.views.generic import TemplateView, UpdateView
|
|
|
|
from django.urls import reverse_lazy
|
2018-01-30 20:39:44 +00:00
|
|
|
from content.models import Category
|
2018-01-31 10:53:37 +00:00
|
|
|
from users.models import SchoolProfile
|
2018-02-28 20:25:44 +00:00
|
|
|
from .models import SiteSettings
|
2018-01-14 12:19:11 +00:00
|
|
|
|
2018-02-22 19:55:10 +00:00
|
|
|
|
2018-01-30 20:39:44 +00:00
|
|
|
class SettingsView(TemplateView):
|
|
|
|
template_name = "settings/settings.html"
|
2018-02-22 19:55:10 +00:00
|
|
|
|
2018-01-30 20:39:44 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
context['categories'] = Category.objects.all()
|
2018-02-22 19:55:10 +00:00
|
|
|
context['site_settings'], _ = SiteSettings.objects.get_or_create()
|
2018-01-31 10:53:37 +00:00
|
|
|
context['schools'] = SchoolProfile.objects.all()
|
2018-02-22 19:55:10 +00:00
|
|
|
context['settings'] = True
|
2018-01-30 20:39:44 +00:00
|
|
|
return context
|
2018-02-22 19:55:10 +00:00
|
|
|
|
|
|
|
class EditSiteSettingsView(UpdateView):
|
|
|
|
template_name = "edit.html"
|
|
|
|
model = SiteSettings
|
|
|
|
fields = '__all__'
|
|
|
|
success_url = reverse_lazy('settings:index')
|
|
|
|
|
|
|
|
def get_object(self, queryset=None):
|
|
|
|
obj,_ = self.model.objects.get_or_create()
|
|
|
|
return obj
|
2018-02-28 14:06:55 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(UpdateView, self).get_context_data(**kwargs)
|
|
|
|
context['title'] = "Édition des " + self.object.PRETTY_NAME
|
|
|
|
return context
|
|
|
|
|
|
|
|
|