Skip to Content
Menu
This question has been flagged
1 Reply
1356 Views
<ul class="list-unstyled top_profiles scroll-view">
<t t-foreach="record.birthday_employes_ids.sorted(key=lambda o: datetime.strptime(o.birthday,DEFAULT_SERVER_DATE_FORMAT).day)" t-as="op">
<li class="media event">
<!--<a class="pull-left border-aero">-->
<!--<img t-att-src="kanban_image('hr.employee', 'image_small', op.id)" class="oe_kanban_image oe_kanban_avatar_smallbox aero profile_thumb"/>-->
<!--</a>-->
<div class="media-body">
<a class="title" href="#"><span t-esc="op.name"/> <span t-esc="op.last_name"/></a>
<p>
<strong>Day</strong>
<span t-esc="op.birthday.slice(8)"/>
</p>
<p>
<small> <span t-esc="op.age"/> Years</small>
</p>
</div>
</li>
</t>

</ul>


Avatar
Discard