{% extends 'management/base.html' %} {% load i18n core_tags ama_tags django_tables2 thumbnail %} {% block bodyextraclass %}{{block.super}} electproccess-summary{% endblock bodyextraclass %} {% block breadcrumbs %} {{block.super}} {% trans 'New' context 'electoral process' as title %} {% breadcrumb title %} {% endblock breadcrumbs %} {% block container %} {% trans 'Electoral process creation' %} {% trans 'Print' %} {% trans 'Summary' %} 1. {% trans 'General data' %} {% trans 'Electoral process identifier' %} {% trans 'Description' %} {% thumbnail object.logo "78x78" crop="center" as im %} {% endthumbnail %} {{object.identifier}} {{object.description}} {% for election in object.elections.all %} 1.{{forloop.counter}} {% trans 'General data' %} | {{election.identifier}} {% trans 'Election identifier' %} {% trans 'Description' %} {{election.identifier}} {{election.description}} {% trans 'Electoral timetable' %} {% trans 'Period for the submission of applications' %} {% trans 'Begin date' %} {% trans 'End date' %} {{election.proposition_begin_date }} {% trans 'GMT Timezone' %} {{election.proposition_end_date }} {% trans 'GMT Timezone' %} {% trans 'Electoral rolls' %} {% trans 'Publication date before verification' %} {% trans 'Publication date after verification and correction' %} {{election.roll_begin_date }} {% trans 'GMT Timezone' %} {{election.roll_end_date }} {% trans 'GMT Timezone' %} {{election|model_verbose_name:'complaint_begin_date'}} {{election|model_verbose_name:'complaint_end_date'}} {{election.complaint_begin_date }} {% trans 'GMT Timezone' %} {{election.complaint_end_date }} {% trans 'GMT Timezone' %} {% trans 'Voting time' %} {% trans 'Begin date' %} {% trans 'End date' %} {{election.voting_begin_date }} {% trans 'GMT Timezone' %} {{election.voting_end_date }} {% trans 'GMT Timezone' %} {% trans 'Voting results' %} {% trans 'Date of publication' %} {{ election.minute_publication_date }} {% trans 'GMT Timezone' %} {% trans 'Approval period - start' %} {% trans 'Approval period - end' %} {{election.minute_begin_date }} {% trans 'GMT Timezone' %} {{election.minute_end_date }} {% trans 'GMT Timezone' %} {% endfor %} 2. {% trans 'Electoral commission' %} {% render_table table %} {% url "management:electoralprocess-generate" slug=object.slug as succ_url %} {% url "management:electoralprocess-summary" slug=object.slug as error_url %} {% trans 'Previous' %} {% trans "Create" %} {% endblock container %}