Skip to content

Commit

Permalink
Merge pull request #176 from Numigi/TA#57442--qweb_adjust
Browse files Browse the repository at this point in the history
TA#57442 [IMP] base_meeting_minutes: Qweb Adjustement
  • Loading branch information
majouda authored Aug 26, 2024
2 parents 8065b91 + 72034a7 commit da1332a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@
Date
</div>
<div class="col-6 text-end">
<t t-if="o.start_date and o.end_date">
<t t-if="o.start_date">
<span t-esc="user_lang.datetime_formatter(o.start_date)" />
from <span t-esc="o.start_date.strftime('%H:%M')" /> to <span
from <span t-esc="o.start_date.strftime('%H:%M')" />
</t>
<t t-if="o.end_date">
to <span
t-esc="o.end_date.strftime('%H:%M')" />
</t>
</div>
Expand Down

0 comments on commit da1332a

Please sign in to comment.