Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
{% block js %}
<script type = "text/javascript">
$(document).ready(function(){
$('#tb-degree').DataTable();
$('#tb-degree').DataTable({"pageLength": 50});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
{% block js %}
<script type = "text/javascript">
$(document).ready(function(){
$('#tb-discipline').DataTable();
$('#tb-discipline').DataTable({"pageLength": 50});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
{% block js %}
<script type = "text/javascript">
$(document).ready(function(){
$('#tb-domain').DataTable();
$('#tb-domain').DataTable({"pageLength": 50});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
$('#tb-company').DataTable();
$('#tb-company').DataTable({"pageLength": 50});
$('.custom-single-select').select2();
$('[data-bs-toggle="tooltip"]').tooltip();
// var pathname = window.location.href;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ <h5 id="offcanvasTopLabel">
);

mass_mail_url = JSON.parse(document.getElementById('name').textContent);
tb_s = $('#tb-shortlisted').DataTable();
tb_a = $('#tb-awaiting').DataTable();
tb_r = $('#tb-rejected').DataTable();
tb_s = $('#tb-shortlisted').DataTable({"pageLength": 50});
tb_a = $('#tb-awaiting').DataTable({"pageLength": 50});
tb_r = $('#tb-rejected').DataTable({"pageLength": 50});
var selected = [];


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
{% block js %}
<script type = "text/javascript">
$(document).ready(function(){
$('#shortlisted').DataTable();
$('#shortlisted').DataTable({"pageLength": 50});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
{% block js %}
<script type = "text/javascript">
$(document).ready(function(){
$('#tb-job-type').DataTable();
$('#tb-job-type').DataTable({"pageLength": 50});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,17 @@
<thead>
<tr>
<th>Sr. No</th>
<th>User Id (Spoken)</th>
<th>Full Name</th>
<th>Email</th>
<th>Profile Update Date</th>
<th>Notified on:</th>
</tr>
</thead>
<tbody>
{% for student in object_list %}
<tr>
<td>{{forloop.counter}}</td>
<td>{{student.spk_usr_id}}</td>
<td><a href="{% url 'student_profile_details' student.spk_usr_id 0 %}">{{student.user.get_full_name | title}}</a></td>
<td>{{ student.user.email }}</td>
<td>{{ student.profile_update_date }}</td>
<td>
{% if student.notified_date %}
{{student.notified_date}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.1/ref/settings/
"""
from .config import *
from config import *
from pathlib import Path
import os
from django.contrib.messages import constants as messages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
$('#tb-company').DataTable();
$('#tb-company').DataTable({"pageLength": 50});
$('.custom-single-select').select2();
$('[data-bs-toggle="tooltip"]').tooltip();
// var pathname = window.location.href;
Expand Down