aboutsummaryrefslogblamecommitdiffstats
path: root/ctrack/caf/views.py
blob: 405fa0e36d5a0dfcf4d6a06f87da537fe278ac57 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
                                                     

                                    
                                              









                                                    




                        












                                                                           
from django.views.generic import CreateView, ListView

from ctrack.caf.forms import CAFForm
from ctrack.caf.models import EssentialService


class CreateCAF(CreateView):
    form_class = CAFForm
    template_name = "caf/create.html"

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context['form'] = self.form_class
        return context


class ListCAF(ListView):
    pass


class ListEssentialService(ListView):
    model = EssentialService

    def get_queryset(self):
        ess = EssentialService.objects.all().order_by("organisation__name")
        return ess

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        return context