vue cv
This commit is contained in:
parent
0861ed2112
commit
958070bd54
@ -2,20 +2,26 @@
|
||||
<h2 class="text-xl font-semibold mb-4">Bonjour {{ app.user.nickname }}</h2>
|
||||
<p class="text-gray-700">Vous êtes à la recherche d'un stage.</p>
|
||||
<br>
|
||||
<p class="text-gray-600">Nom : {{ app.user.firstName }}</p>
|
||||
<p class="text-gray-600">Prénom : {{ app.user.lastName }}</p>
|
||||
<p class="text-gray-600">Adresse : {{ app.user.address }}</p>
|
||||
<p class="text-gray-600">Téléphone : {{ app.user.tel }}</p>
|
||||
<p class="text-gray-600">Email : {{ app.user.mail }}</p>
|
||||
|
||||
<hr class="my-10"/>
|
||||
<div class="flex justify-around">
|
||||
<div class="flex flex-col gap-5">
|
||||
<p class="text-gray-600">Nom : {{ app.user.firstName }}</p>
|
||||
<p class="text-gray-600">Prénom : {{ app.user.lastName }}</p>
|
||||
<p class="text-gray-600">Adresse : {{ app.user.address }}</p>
|
||||
<p class="text-gray-600">Téléphone : {{ app.user.tel }}</p>
|
||||
<p class="text-gray-600">Email : {{ app.user.mail }}</p>
|
||||
</div>
|
||||
|
||||
{% if app.user.resume != "" %}
|
||||
<iframe class="w-full" src={{ 'cv/' ~ app.user.resume }}></iframe>
|
||||
{% if app.user.resumeName != "" %}
|
||||
<p class="text-gray-600 italic">Nom du fichier : {{ app.user.resumeName }}</p>
|
||||
{% if app.user.resume != "" %}
|
||||
<div>
|
||||
<iframe height="575px" width="400px" src={{ 'cv/' ~ app.user.resume }}></iframe>
|
||||
{% if app.user.resumeName != "" %}
|
||||
<p class="text-gray-600 italic">Nom du fichier : {{ app.user.resumeName }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<a class="bg-teal-500 hover:bg-teal-600 text-white py-2 px-4 rounded-full"
|
||||
href="{{ path('app_intern_resume',{id: app.user.id}) }}"> Ajouter / Modifier le CV
|
||||
|
Loading…
x
Reference in New Issue
Block a user