-
Notifications
You must be signed in to change notification settings - Fork 0
/
alumni_list.php
183 lines (173 loc) · 5.91 KB
/
alumni_list.php
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php
include 'admin/db_connect.php';
?>
<style>
#portfolio .img-fluid{
width: calc(100%);
height: 30vh;
z-index: -1;
position: relative;
padding: 1em;
}
.alumni-list{
cursor: pointer;
border: unset;
flex-direction: inherit;
}
.alumni-img {
width: calc(30%);
max-height: 30vh;
display: flex;
align-items: center;
justify-content: center;
}
.alumni-list .card-body{
width: calc(70%);
}
.alumni-img img {
border-radius: 100%;
max-height: calc(100%);
max-width: calc(100%);
}
span.hightlight{
background: yellow;
}
.carousel,.carousel-inner,.carousel-item{
min-height: calc(100%)
}
header.masthead,header.masthead:before {
min-height: 50vh !important;
height: 50vh !important
}
.row-items{
position: relative;
}
.card-left{
left:0;
}
.card-right{
right:0;
}
.rtl{
direction: rtl ;
}
.alumni-text{
justify-content: center;
align-items: center ;
}
.masthead{
min-height: 23vh !important;
height: 23vh !important;
}
.masthead:before{
min-height: 23vh !important;
height: 23vh !important;
}
.alumni-list p {
margin:unset;
}
</style>
<header class="masthead">
<div class="container-fluid h-100">
<div class="row h-100 align-items-center justify-content-center text-center">
<div class="col-lg-8 align-self-end mb-4 page-title">
<h3 class="text-white">Alumnus/Alumnae List</h3>
<hr class="divider my-4" />
<div class="col-md-12 mb-2 justify-content-center">
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="card mb-4 mt-4">
<div class="card-body">
<div class="row">
<div class="col-md-8">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="filter-field"><i class="fa fa-search"></i></span>
</div>
<input type="text" class="form-control" id="filter" placeholder="Filter name,course, etc." aria-label="Filter" aria-describedby="filter-field">
</div>
</div>
<div class="col-md-4">
<button class="btn btn-primary btn-block btn-sm" id="search">Search</button>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid mt-3 pt-2">
<div class="row-items">
<div class="col-lg-12">
<div class="row">
<?php
$fpath = 'admin/assets/uploads';
$alumni = $conn->query("SELECT a.*,c.course,Concat(a.lastname,', ',a.firstname,' ',a.middlename) as name from alumnus_bio a inner join courses c on c.id = a.course_id order by Concat(a.lastname,', ',a.firstname,' ',a.middlename) asc");
while($row = $alumni->fetch_assoc()):
?>
<div class="col-md-4 item">
<div class="card alumni-list" data-id="<?php echo $row['id'] ?>">
<div class="alumni-img" card-img-top>
<img src="<?php echo $fpath.'/'.$row['avatar'] ?>" alt="">
</div>
<div class="card-body">
<div class="row align-items-center h-100">
<div class="">
<div>
<p class="filter-txt"><b><?php echo $row['name'] ?></b></p>
<hr class="divider w-100" style="max-width: calc(100%)">
<p class="filter-txt">Email: <b><?php echo $row['email'] ?></b></p>
<p class="filter-txt">Course: <b><?php echo $row['course'] ?></b></p>
<p class="filter-txt">Batch: <b><?php echo $row['batch'] ?></b></p>
<p class="filter-txt">Currently working in/as <b><?php echo $row['connected_to'] ?></b></p>
<br>
</div>
</div>
</div>
</div>
</div>
<br>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
<script>
// $('.card.alumni-list').click(function(){
// location.href = "index.php?page=view_alumni&id="+$(this).attr('data-id')
// })
$('.book-alumni').click(function(){
uni_modal("Submit Booking Request","booking.php?alumni_id="+$(this).attr('data-id'))
})
$('.alumni-img img').click(function(){
viewer_modal($(this).attr('src'))
})
$('#filter').keypress(function(e){
if(e.which == 13)
$('#search').trigger('click')
})
$('#search').click(function(){
var txt = $('#filter').val()
start_load()
if(txt == ''){
$('.item').show()
end_load()
return false;
}
$('.item').each(function(){
var content = "";
$(this).find(".filter-txt").each(function(){
content += ' '+$(this).text()
})
if((content.toLowerCase()).includes(txt.toLowerCase()) == true){
$(this).toggle(true)
}else{
$(this).toggle(false)
}
})
end_load()
})
</script>