Reorganized stages views in a subdirectory

This commit is contained in:
Claude Paroz 2018-06-16 18:40:34 +02:00
parent 772b0b6b01
commit f2bd9734af
9 changed files with 484 additions and 472 deletions

View file

@ -5,7 +5,7 @@ from django.db.models import BooleanField
from django.urls import reverse
from django.utils.html import format_html
from stages.exports import OpenXMLExport
from stages.views.export import OpenXMLExport
from .forms import CandidateForm
from .models import (
Candidate, Interview, GENDER_CHOICES, DIPLOMA_CHOICES, DIPLOMA_STATUS_CHOICES,

View file

@ -6,7 +6,7 @@ from django.core import mail
from django.test import TestCase
from django.urls import reverse
from stages.exports import openxml_contenttype
from stages.views.export import openxml_contenttype
from stages.models import Section, Teacher
from .models import Candidate, Interview

View file

@ -8,7 +8,7 @@ from django.template import loader
from django.urls import reverse, reverse_lazy
from django.utils import timezone
from stages.base_views import EmailConfirmationBaseView
from stages.views.base import EmailConfirmationBaseView
from candidats.models import Candidate, Interview
from .pdf import InscriptionSummaryPDF