35 lines
916 B
HTML
35 lines
916 B
HTML
{% extends "index.html" %}
|
|
{% block content %}
|
|
{% load i18n %}
|
|
{% load basefilters %}
|
|
{% load attendancefilters %}
|
|
{% include 'shift_request/shift_request_nav.html' %}
|
|
<div id="view-container" class="oh-wrapper">
|
|
{% include 'shift_request/htmx/requests.html' %}
|
|
</div>
|
|
|
|
|
|
<div
|
|
class="oh-modal"
|
|
id="shiftRequestModalUpdate"
|
|
role="dialog"
|
|
aria-labelledby="shiftRequestModalUpdate"
|
|
aria-hidden="true"
|
|
>
|
|
<div class="oh-modal__dialog">
|
|
<div class="oh-modal__dialog-header">
|
|
<h5 class="oh-modal__dialog-title" id="shiftRequestModalUpdateLabel"
|
|
>{% trans "Update Request" %}</span
|
|
>
|
|
<button class="oh-modal__close" aria-label="Close">
|
|
<ion-icon name="close-outline"></ion-icon>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="oh-modal__dialog-body" id='shiftRequestModalUpdateBody'>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock content %} |