2020-03-20 23:30:49 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
2020-03-20 23:52:26 +00:00
|
|
|
from django.views.generic import CreateView, UpdateView
|
2020-03-20 23:30:49 +00:00
|
|
|
from django_tables2 import SingleTableView
|
|
|
|
|
|
|
|
from .models import Billing
|
|
|
|
from .tables import BillingTable
|
|
|
|
|
|
|
|
|
2020-03-20 23:52:26 +00:00
|
|
|
class BillingCreateView(LoginRequiredMixin, CreateView):
|
|
|
|
"""
|
|
|
|
Create Billing
|
|
|
|
"""
|
|
|
|
model = Billing
|
|
|
|
fields = '__all__'
|
|
|
|
# form_class = ClubForm
|
|
|
|
|
|
|
|
|
2020-03-20 23:30:49 +00:00
|
|
|
class BillingListView(LoginRequiredMixin, SingleTableView):
|
|
|
|
"""
|
|
|
|
List existing Billings
|
|
|
|
"""
|
|
|
|
model = Billing
|
|
|
|
table_class = BillingTable
|
2020-03-20 23:52:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BillingUpdateView(LoginRequiredMixin, UpdateView):
|
|
|
|
"""
|
|
|
|
Create Billing
|
|
|
|
"""
|
|
|
|
model = Billing
|
|
|
|
fields = '__all__'
|
|
|
|
# form_class = ClubForm
|