1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-24 19:20:29 +02:00
This commit is contained in:
Yohann D'ANELLO
2020-04-11 23:02:12 +02:00
parent a186ccbb26
commit 31d2224b8f
15 changed files with 257 additions and 7 deletions

View File

@ -1,5 +1,17 @@
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.shortcuts import render
from django.contrib.auth.mixins import LoginRequiredMixin
from django_tables2 import SingleTableView
from permission.views import ProtectQuerysetMixin
from wei.models import WEIClub
from .tables import WEITable
class WEIListView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTableView):
"""
List existing WEI
"""
model = WEIClub
table_class = WEITable