gest_user_api_get_for_send.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <p>Bonjour.</p>
  2. <p>Nous avons créé le compte et la boite e-mail.<br>
  3. Voici les informations de connexion aux différents logiciels.
  4. </p>
  5. <table class="table table-sm">
  6. <tr><td>Nom : </td><td> {{item.GES_Nom}} </td></tr>
  7. <tr><td>Prénom : </td><td> {{item.GES_Prenom}} </td></tr>
  8. <tr><td>Site : </td><td> {{item.get_GES_L_Site_display}} </td></tr>
  9. <tr><td>Service : </td><td> {{item.GES_Service}} </td></tr>
  10. <tr><td>Fonction : </td><td> {{item.GES_Fonction}} </td></tr>
  11. </table>
  12. {% if item.apps %}
  13. <h4>Liste des applications sélectionné avec le profil</h4>
  14. <table class="table table-sm">
  15. <tr>
  16. <th scope="col">Nom de l'application</th>
  17. <th scope="col">Login</th>
  18. <th scope="col">Mot de passe</th>
  19. </tr>
  20. {% for apps in item.apps %}
  21. {% if apps.GES_APPLink_Create == True %}
  22. <tr class="table-success">
  23. {% else %}
  24. <tr>
  25. {% endif %}
  26. <td> {{apps.GES_APPLink_APP.GESAP_Nom}} </td>
  27. <td> {{apps.GES_APPLink_Login}} </td>
  28. <td> {{apps.GES_APPLink_MDP}} </td>
  29. </tr>
  30. {% endfor %}
  31. </table>
  32. {% endif %}