-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Intégration du formulaire "nouveau demandeur" #522
- Loading branch information
Showing
9 changed files
with
293 additions
and
20 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
aidants_connect_habilitation/static/css/main-habilitation.css.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<div class="fr-col-12 fr-col-md-8"> | ||
<ol class="habilitation-breadcrumbs"> | ||
<li class="{% if step == 1 %}active{% endif %}">Le demandeur</li> | ||
<li>La structure</li> | ||
<li>Les personnes<br>impliquées</li> | ||
<li>Récapitulatif<br>& validation</li> | ||
</ol> | ||
</div> |
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
19 changes: 19 additions & 0 deletions
19
aidants_connect_habilitation/templates/fields/fields_as_fr_grid_row.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div | ||
class="form-grid-row fr-grid-row fr-grid-row--gutters {% if errors %}form-grid-row-error{% endif %} {{ field.css_classes }}"> | ||
<div class="fr-col-12 fr-col-md-5">{% if field.label %}{{ field.label_tag }}{% endif %}</div> | ||
<div class="fr-col-12 fr-col-md-7"> | ||
{{ field }} | ||
</div> | ||
</div> | ||
|
||
{% if errors %} | ||
<div class="fr-grid-row fr-grid-row--gutters"> | ||
<div class="errors fr-col-12 fr-col-md-7 fr-col-offset-md-5">{{ errors }}</div> | ||
</div> | ||
{% endif %} | ||
|
||
{% if field.help_text %} | ||
<div class="fr-grid-row fr-grid-row--gutters"> | ||
<div class="helptext fr-col-12 fr-col-md-7 fr-col-offset-md-5">{{ field.help_text|safe }}</div> | ||
</div> | ||
{% 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