working on tickets modal

This commit is contained in:
2024-01-05 15:05:12 +00:00
parent a59baefd8f
commit 16de4e50a6
7 changed files with 127 additions and 24 deletions

View File

@ -16,6 +16,8 @@
/>
<link type="text/css" href="{{ ASSETS_ROOT }}/css/index.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
@ -73,7 +75,15 @@
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}
<script src="https://cdn.ckeditor.com/ckeditor5/40.2.0/classic/ckeditor.js"></script>
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script>
$(document).ready(function() {
$(".select-2").select2({
theme: "bootstrap",
minimumResultsForSearch: -1
});
});
// $(document).ready(function() {
// (function(){
// var nativeAddClass = jQuery.fn.addClass;