2020-04-11 01:37:06 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-04-11 21:02:12 +00:00
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
|
|
from django_tables2 import SingleTableView
|
|
|
|
from permission.views import ProtectQuerysetMixin
|
|
|
|
from wei.models import WEIClub
|
2020-04-11 01:37:06 +00:00
|
|
|
|
2020-04-11 21:02:12 +00:00
|
|
|
from .tables import WEITable
|
|
|
|
|
|
|
|
|
|
|
|
class WEIListView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTableView):
|
|
|
|
"""
|
|
|
|
List existing WEI
|
|
|
|
"""
|
|
|
|
model = WEIClub
|
|
|
|
table_class = WEITable
|