src/iconolab_mcc/views/misc.py
author Riwad Salim
Wed, 23 May 2018 12:42:37 +0200
changeset 1 309def3c05dc
permissions -rw-r--r--
Adding specific items to iconolab-mcc project interface
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     1
from django.views.generic import TemplateView
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     2
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     3
class CreditsView(TemplateView):
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     4
    template_name='iconolab_mcc/misc/credits.html'
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     5
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     6
class LegalMentionsView(TemplateView):
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     7
    template_name='iconolab_mcc/misc/legalmentions.html'
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     8
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
     9
class ContributionCharterView(TemplateView):
309def3c05dc Adding specific items to iconolab-mcc project interface
Riwad Salim
parents:
diff changeset
    10
    template_name='iconolab_mcc/misc/charter.html'