-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sign-up): register organism, display error messages
Squash commits from PR #2575. See: https://github.com/PnX-SI/GeoNature/pull/2575/commits Original authors: @joelclems, @TheoLechemia.
- Loading branch information
Showing
7 changed files
with
66 additions
and
11 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
21 changes: 21 additions & 0 deletions
21
backend/geonature/core/users/templates/account_created.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,21 @@ | ||
<html> | ||
|
||
<body> | ||
<h2>Création de compte validée</h2> | ||
<p>Le compte suivant a bien été validé: </p> | ||
<ul> | ||
<li> <b> Nom : </b> {{user.nom_role}} </li> | ||
<li> <b> Prénom : </b> {{user.prenom_role}} </li> | ||
<li> <b> Identifiant : </b> {{user.identifiant}} </li> | ||
<li> <b> Email : </b> {{user.email}} </li> | ||
{% for key, value in user.champs_addi.items() %} | ||
<li> | ||
<b> {{key}} : </b> {{value}} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<a href=" {{redirect_url}} ">Retour à l'application GeoNature</a> | ||
|
||
</body> | ||
</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
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