-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathmasterTemplate.html
More file actions
205 lines (154 loc) · 3.04 KB
/
Copy pathmasterTemplate.html
File metadata and controls
205 lines (154 loc) · 3.04 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLN Worksheet</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Noto Sans", Arial, sans-serif;
}
body{
background:#ffffff;
color:#000;
}
.page{
width:210mm;
min-height:297mm;
margin:auto;
padding:18mm;
}
.header{
display:flex;
justify-content:space-between;
align-items:flex-start;
border-bottom:2px solid #000;
padding-bottom:12px;
margin-bottom:20px;
}
.student-details{
flex:1;
margin-right:30px;
}
.student-details h2{
font-size:22px;
margin-bottom:15px;
}
.info-row{
display:flex;
margin-bottom:10px;
}
.label{
width:150px;
font-weight:bold;
}
.value{
flex:1;
border-bottom:1px solid #555;
min-height:22px;
padding-left:6px;
}
.qr-section{
width:120px;
text-align:center;
}
.qr-box{
width:100px;
height:100px;
border:2px dashed #777;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
}
.qr-box img{
width:100%;
height:100%;
object-fit:contain;
}
.page-info{
display:flex;
justify-content:space-between;
margin-bottom:25px;
font-size:15px;
}
.page-info div{
flex:1;
}
.worksheet-content{
min-height:700px;
}
.footer{
margin-top:30px;
border-top:1px solid #000;
padding-top:10px;
display:flex;
justify-content:space-between;
font-size:13px;
}
@media print{
body{
margin:0;
}
.page{
width:100%;
min-height:auto;
margin:0;
padding:15mm;
}
}
</style>
</head>
<body>
<div class="page">
<!-- HEADER -->
<div class="header">
<div class="student-details">
<h2>FLN Assessment Worksheet</h2>
<div class="info-row">
<div class="label">Student Name</div>
<div class="value">{{student_name}}</div>
</div>
<div class="info-row">
<div class="label">Father's Name</div>
<div class="value">{{father_name}}</div>
</div>
</div>
<div class="qr-section">
<div class="qr-box">
<img src="{{qr_code}}" alt="QR Code">
</div>
<small>QR Code</small>
</div>
</div>
<!-- PAGE INFORMATION -->
<div class="page-info">
<div>
<strong>Level:</strong> {{level}}
</div>
<div>
<strong>Worksheet ID:</strong> {{worksheet_id}}
</div>
<div>
<strong>Language:</strong> {{language}}
</div>
</div>
<!-- BODY -->
<div class="worksheet-content">
{{worksheet_content}}
</div>
<!-- FOOTER -->
<div class="footer">
<div>
Generated by FLN Assessment Platform
</div>
<div>
Page {{page_number}} / {{total_pages}}
</div>
</div>
</div>
</body>
</html>