Commit 583d14d 1 parent e306589 commit 583d14d Copy full SHA for 583d14d
File tree 3 files changed +33
-2
lines changed
3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 6
6
background-attachment : fixed;
7
7
8
8
}
9
+
10
+
9
11
.allButFooter {
10
12
min-height : calc (100vh - 40px );
11
13
}
Original file line number Diff line number Diff line change 58
58
< input type ="password " class ="form-control " name ="pwd " id ="lastname " placeholder ="Password " style ="font-family: 'Bungee', cursive; ">
59
59
</ div >
60
60
61
- < center > < button style ="font-family: 'Rubik Glitch', cursive; " type ="submit " class ="btn btn-primary "> Submit </ button > </ center >
61
+ < center > < button style ="font-family: 'Rubik Glitch', cursive; " type ="submit " class ="btn btn-primary "> Login </ button > </ center >
62
62
63
63
</ form >
64
64
</ div >
Original file line number Diff line number Diff line change 7
7
{% block content %}
8
8
9
9
<!-- {{data}} -->
10
- {% if load%}
10
+ {% if load %}
11
+
12
+ < div class ="container ">
13
+ < table class ="table table-borderless text-center " align ="center " style ="margin: 0px auto; ">
14
+ < thead >
15
+ < tr >
16
+ < th scope ="col "> COURSE</ th >
17
+ < th scope ="col "> PERCENTAGE</ th >
18
+ < th scope ="col "> REMARK</ th >
19
+ </ tr >
20
+ </ thead >
21
+ < tbody >
22
+ {% for key in data %}
23
+ < tr >
24
+ < td > {{ key['name'] }}</ td >
25
+ < td > {{key['percentage_of_attendance']}}</ td >
26
+ {% if key.get("class_to_bunk",0) != 0 %}
27
+ < td > Take leave : {{key.get("class_to_bunk",0)}}</ td >
28
+ {% else %}
29
+ < td > Attend : {{key.get("class_to_attend",0)}}</ td >
30
+ {% endif %}
31
+ </ tr >
32
+ {% endfor %}
33
+ </ tbody >
34
+ </ table >
35
+ </ div >
36
+ < br >
37
+ < br >
38
+
39
+
11
40
{% for key in data %}
12
41
< br >
13
42
< center >
You can’t perform that action at this time.
0 commit comments