-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #688 from DH-IT-Portal-Development/feature/review_…
…and_secretary_pages_redesign Feature/review and secretary pages redesign
- Loading branch information
Showing
21 changed files
with
402 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
{% load i18n %} | ||
|
||
<div class="mt-4 mb-3 w-100 d-flex"> | ||
{% if not no_back %} | ||
<input class="btn btn-secondary" | ||
type="submit" | ||
name="save_back" | ||
value="{% trans '<< Opslaan en vorige stap' %}" /> | ||
{% endif %} | ||
{% if not no_forward %} | ||
{% trans 'Opslaan en volgende stap >>' as default_next_text %} | ||
<input class="btn btn-primary continue-button ms-auto" | ||
type="submit" | ||
name="save_continue" | ||
value="{{ next_text|default:default_next_text }}" /> | ||
{% endif %} | ||
</div> | ||
{% if not no_back %} | ||
<input class="btn btn-secondary" | ||
type="submit" | ||
name="save_back" | ||
value="{% trans '<< Opslaan en vorige stap' %}" /> | ||
{% endif %} | ||
{% if not no_forward %} | ||
{% trans 'Opslaan en volgende stap >>' as default_next_text %} | ||
<input class="btn btn-primary continue-button ms-auto" | ||
type="submit" | ||
name="save_continue" | ||
value="{{ next_text|default:default_next_text }}" /> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 0 additions & 33 deletions
33
proposals/templates/proposals/proposal_update_attachments.html
This file was deleted.
Oops, something went wrong.
50 changes: 22 additions & 28 deletions
50
proposals/templates/proposals/proposal_update_date_start.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,30 @@ | ||
{% extends "base/fetc_base.html" %} | ||
{% extends "base/fetc_form_base.html" %} | ||
|
||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block header_title %} | ||
{% trans "Formulieren aanpassen" %} - {{ block.super }} | ||
{% trans "Formulieren aanpassen" %} | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="uu-container"> | ||
<div class="col-12"> | ||
<h2>{% trans "Startdatum aanpassen" %}</h2> | ||
<p> | ||
{% blocktrans trimmed with title=proposal.title ref_number=proposal.reference_number %} | ||
Op deze pagina kan de startdatum worden aangepast van de aanvraag {{ title }} | ||
(referentienummer <em>{{ ref_number }}</em>). <b>Let op!</b> Als de review al is afgerond, | ||
wordt de nieuwe startdatum niet automatisch weergegeven in de PDF. Mocht je de PDF | ||
opnieuw willen genereren, neem hierover dan contact op met | ||
{% endblocktrans %} | ||
<a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
<form action="" method="post" enctype="multipart/form-data"> | ||
{% csrf_token %} | ||
<table> | ||
{{ form.as_table }} | ||
</table> | ||
<input type="hidden" name="next" value="{{ request.META.HTTP_REFERER }}"> | ||
<input class="btn btn-primary" | ||
type="submit" | ||
value="{% trans 'Startdatum aanpassen' %}" /> | ||
<a class="btn btn-secondary" href="javascript:history.go(-1);">{% trans "Terug naar de vorige pagina" %}</a> | ||
</form> | ||
</div> | ||
</div> | ||
{% block sidebar %}<!--Empty to override stepper-->{% endblock %} | ||
|
||
{% block pre-form-text %} | ||
<h2>{% trans "Startdatum aanpassen" %}</h2> | ||
<p> | ||
{% blocktrans trimmed with title=proposal.title ref_number=proposal.reference_number %} | ||
Op deze pagina kan de startdatum worden aangepast van de aanvraag {{ title }} | ||
(referentienummer <em>{{ ref_number }}</em>). <b>Let op!</b> Als de review al is afgerond, | ||
wordt de nieuwe startdatum niet automatisch weergegeven in de PDF. Mocht je de PDF | ||
opnieuw willen genereren, neem hierover dan contact op met | ||
{% endblocktrans %} | ||
<a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
{% endblock %} | ||
|
||
{% block form-buttons %} | ||
<a class="btn btn-secondary" href="javascript:history.go(-1);">{% trans "Terug naar de vorige pagina" %}</a> | ||
<input class="btn btn-primary ms-auto" | ||
type="submit" | ||
value="{% trans 'Startdatum aanpassen' %}" /> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% extends "base/fetc_form_base.html" %} | ||
|
||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block header_title %} | ||
{% trans "Formulieren aanpassen" %} - {{ block.super }} | ||
{% endblock %} | ||
|
||
{% block sidebar %}<!--Override stepper-->{% endblock %} | ||
|
||
{% block pre-form-text %} | ||
<h2>{% trans "Formulieren aanpassen" %}</h2> | ||
<p> | ||
{% blocktrans trimmed with title=proposal.title ref_number=proposal.reference_number %} | ||
Op deze pagina kan je de formulieren aanpassen behorende bij de aanvraag {{ title }} | ||
(referentienummer <em>{{ ref_number }}</em>). | ||
{% endblocktrans %} | ||
</p> | ||
{% endblock %} | ||
|
||
{% block form-buttons %} | ||
<a class="btn btn-secondary" href="javascript:history.go(-1);">{% trans "Terug naar de vorige pagina" %}</a> | ||
<input class="btn btn-primary ms-auto" | ||
type="submit" | ||
value="{% trans 'Formulieren aanpassen' %}" /> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.