12 lines
718 B
HTML
12 lines
718 B
HTML
{% load i18n %}
|
|
|
|
<div class="d-flex justify-content-between mb-3 me-3 align-items-center">
|
|
<span class="oh-activity-sidebar__title fw-bold font-semibold">{{candidate}}{% trans "'s Scheduled Interviews" %}</span>
|
|
|
|
<button type="button" hx-get="{% url 'skill-zone-cand-create' candidate.id %}?candidate={{candidate.id}}" title="Schedule Interview" hx-target="#genericModalBody" hx-swap="innerHTML" data-target="#genericModal" class="oh-btn oh-btn--secondary mt-2 mr-0 oh-btn--w-100-resp" data-toggle="oh-modal-toggle">
|
|
<ion-icon name="add" class="mr-1 md hydrated" role="img" aria-label="add"></ion-icon>
|
|
{% trans "Add" %}
|
|
</button>
|
|
</div>
|
|
|
|
{% include "generic/horilla_list_table.html" %} |