mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 04:03:22 +00:00
20 lines
702 B
Python
20 lines
702 B
Python
|
from django.shortcuts import render
|
||
|
from django.views.generic import ListView, DetailView, RedirectView
|
||
|
from django.views.generic.edit import UpdateView, CreateView, DeleteView, FormView
|
||
|
from django.core.urlresolvers import reverse_lazy, reverse
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
from django.conf import settings
|
||
|
|
||
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, CanCreateMixin
|
||
|
from election.models import Election, Responsability, Candidate
|
||
|
|
||
|
# Display elections
|
||
|
|
||
|
|
||
|
class ElectionsListView(CanViewMixin, ListView):
|
||
|
"""
|
||
|
A list with all responsabilities and their candidates
|
||
|
"""
|
||
|
model = Election
|
||
|
template_name = 'election/election_list.jinja'
|