Skip to content
Snippets Groups Projects
Commit cc408ee7 authored by Alicia.DeDiosFuente's avatar Alicia.DeDiosFuente
Browse files

fix: [AoU-979] Add depositor in notifications email for new deposit to...

fix: [AoU-979] Add depositor in notifications email for new deposit to validate and indirect publications validated
parent 3947d551
No related tags found
1 merge request!392fix: [AoU-979] Add depositor in notifications email for new deposit to...
......@@ -10,7 +10,10 @@
<p>Madame, Monsieur,</p>
<p>Voici la liste de vos publications qui ont été versées hier dans l'Archive ouverte UNIGE :</p>
<ul th:each="publication : ${publications}">
<li><a th:href="${homepage} + '/' + ${publication.archiveId}" th:text="${publication.title}"></a>
<li><p>
<a th:href="${homepage} + '/' + ${publication.archiveId}" th:text="${publication.title}"></a>
<span th:text="' - Déposé par ' + ${publication.creator.firstName} + ${publication.creator.lastName}"> </span>
</p>
</li>
</ul>
<p>Vous pouvez demander des corrections si vous constatez une inexactitude. Votre correspondant-e à la Bibliothèque reste à votre disposition si
......
......@@ -9,7 +9,10 @@
<p>De nouveaux dépôts sont en attente de validation :</p>
<ul th:each="publication : ${publications}">
<li><a th:href="${submissionPortalHomepage} + '/#/deposit-to-validate/detail/' + ${publication.resId}" th:text="${publication.title}"></a>
<li><p>
<a th:href="${submissionPortalHomepage} + '/#/deposit-to-validate/detail/' + ${publication.resId}" th:text="${publication.title}"></a>
<span th:text="' - Déposé par ' + ${publication.creator.firstName} + ${publication.creator.lastName}"></span>
</p>
</li>
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment