-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (68 loc) · 3.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>لیست دروس انتخاب واحد</title>
<meta name="author" content="Goudarz Jafari">
<meta content="لیست دروس منتشر شده برای انتخاب واحد دانشگاه آزاد شیراز">
<link rel="stylesheet" href="index.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/dataTables.bootstrap4.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="images//apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
</head>
<body>
<div class="container-fluid">
<main class="row">
<div class="col">
<section>
<h1>لیست دروس انتخاب واحد</h1>
<p>دروس ارائه شده ترم مهر ۱۴۰۳ </p>
<p> لیست دروس تخصصی و عمومی، کارشناسی ارشد ناپیوسته ، کارشناسی (پیوسته - ناپیوسته)، کاردانی (پیوسته - ناپیوسته)</p>
<p> اولویت دیدن دروس در خود آموزشیار میباشد، این فایل فقط جنبه کمک در زمانی که دسترسی به آموزشیار راحت نباشد را دارد. (تا ساعت ۲۲:۰۰ - ۵ مهر ۱۴۰۳ لیست به روز شده)
</p>
</section>
<section id="table-container" class="table-responsive"></section>
</main>
<footer class="row">
<div class="col">
<hr>
<p class="text-right">پیادهسازی شده توسط
<a href="https://twitter.com/GoudarzJafari">گودرز جعفری</a></p>
</div>
</footer>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.csv.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/dataTables.bootstrap4.min.js"></script>
<script src="js/csv_to_html_table.js"></script>
<script>
function format_link(link) {
if (link)
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
else return "";
}
CsvToHtmlTable.init({
csv_path: "data/4031.csv",
element: "table-container",
allow_download: true,
csv_options: {
separator: ",",
delimiter: '"'
},
datatables_options: {
paging: false
},
custom_formatting: [
[4, format_link]
]
});
</script>
</body>
</html>