mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 21:13:26 +00:00
25 lines
885 B
Twig
25 lines
885 B
Twig
{% extends 'prod/Tooltip/Tooltip.html.twig'%}
|
|
|
|
{% set title %}
|
|
app['phraseanet.user'].get_display_name()
|
|
{% endset %}
|
|
{% set width = 300 %}
|
|
{% set maxwidth = null %}
|
|
|
|
{% block content %}
|
|
<div class="UserTooltip" style="position:relative;width:{{ width }}px;height:100px;">
|
|
<div class="PNB" style="width:100px;right:auto;">
|
|
<img style="margin:14px 8px;" src="/skins/icons/user.png"/>
|
|
</div>
|
|
<div class="PNB" style="left:100px;">
|
|
<h1> {{ app['phraseanet.user'].get_display_name() }}</h1>
|
|
<ul>
|
|
<li>{{ app['phraseanet.user'].get_email() }}</li>
|
|
<li>{{ app['phraseanet.user'].get_company() }}</li>
|
|
<li>{{ app['phraseanet.user'].get_job() }}</li>
|
|
<li>{{ app['phraseanet.user'].get_position() }}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|