[FIX] ONBOARDING: Fixed unclosed div

This commit is contained in:
Horilla
2024-04-18 12:33:59 +05:30
parent b2ae9d7b4f
commit 97dc32e414
6 changed files with 23 additions and 17 deletions

View File

@@ -8,4 +8,5 @@
<button type="submit" class="oh-btn oh-btn--secondary w-100">
{% trans "Apply" %}
</button>
</form>
</div>
</form>

View File

@@ -214,8 +214,9 @@
success: function (response) {
$("#ohMessages").append(`
<div class="oh-alert-container">
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
</div>
</div>`);
}
});
@@ -236,8 +237,9 @@
success: function (response) {
$("#ohMessages").append(`
<div class="oh-alert-container">
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
</div>
</div>`);
},
});

View File

@@ -1,17 +1,17 @@
{% load attendancefilters recruitmentfilters %} {% load basefilters %} {% load static %}
{% load i18n %} {% include 'filter_tags.html' %}
{% load attendancefilters recruitmentfilters basefilters static i18n %}
{% include 'filter_tags.html' %}
<div id="ohMessages"></div>
<div class="oh-checkpoint-badge text-success mb-2" id="selectAllInstances" style="cursor: pointer;">
{% trans "Select All Candidates" %}
</div>
<div class="oh-checkpoint-badge text-secondary mb-2" id="unselectAllInstances" style="cursor: pointer;">
{% trans "Unselect All Candidates" %}
</div>
<div class="oh-checkpoint-badge text-info mb-2" id="exportCandidates" style="cursor: pointer;">
{% trans "Export Candidates" %}
</div>
<div class="oh-checkpoint-badge text-danger mb-2" id="selectedCandidate" >
</div>
</div>
<div class="oh-checkpoint-badge text-secondary mb-2" id="unselectAllInstances" style="cursor: pointer;">
{% trans "Unselect All Candidates" %}
</div>
<div class="oh-checkpoint-badge text-info mb-2" id="exportCandidates" style="cursor: pointer;">
{% trans "Export Candidates" %}
</div>
<div class="oh-checkpoint-badge text-danger mb-2" id="selectedCandidate" >
</div>
<div class="oh-card">
{% for candidate in candidates %}
<div class="oh-accordion-meta">
@@ -533,6 +533,7 @@
<div class="oh-alert-container">
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
</div>
</div>`);
}
});
@@ -555,6 +556,7 @@
<div class="oh-alert-container">
<div class="oh-alert oh-alert--animated oh-alert--${response.type}">
${response.message}
</div>
</div>`);
},
});

View File

@@ -139,7 +139,6 @@
</div>
</div>
<!-- stage-form -->
<div class="oh-modal" id="editModal1" role="dialog" aria-labelledby="editDialogModal" aria-hidden="true">

View File

@@ -32,4 +32,5 @@
<button id="formStage" type="submit" class="oh-btn oh-btn--secondary w-100">
{% trans "Create" %}
</button>
</div>
</form>

View File

@@ -32,4 +32,5 @@
<button type="submit" class="oh-btn oh-btn--secondary w-100">
{% trans "Update" %}
</button>
</div>
</form>