datatracker/ietf/templates/meeting/timeslot_start_end.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

11 lines
439 B
HTML

<div class="timetooltip">
<div class="time"
data-start-time="{{ item.start_timestamp }}"
data-end-time="{{ item.end_timestamp }}">
{% if "-utc" in request.path %}
{{ item.timeslot.utc_start_time|date:"H:i" }}-{{ item.timeslot.utc_end_time|date:"H:i" }}
{% else %}
{{ item.timeslot.time|date:"H:i" }}-{{ item.timeslot.end_time|date:"H:i" }}
{% endif %}
</div>
</div>