forked from DGNum/gestioCOF
Fewer requests on petit cours details management.
This commit is contained in:
parent
3dc91e30bd
commit
6ce2f178bf
1 changed files with 5 additions and 0 deletions
|
@ -35,6 +35,11 @@ class DemandeListView(ListView):
|
|||
|
||||
class DemandeDetailView(DetailView):
|
||||
model = PetitCoursDemande
|
||||
queryset = (
|
||||
PetitCoursDemande.objects
|
||||
.prefetch_related('petitcoursattribution_set',
|
||||
'matieres')
|
||||
)
|
||||
template_name = "gestioncof/details_demande_petit_cours.html"
|
||||
context_object_name = "demande"
|
||||
|
||||
|
|
Loading…
Reference in a new issue