File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < title > Report Viewer</ title >
6+ < style >
7+ body {
8+ margin : 0 ;
9+ display : flex;
10+ flex-direction : column;
11+ height : 100vh ;
12+ }
13+
14+ .menu {
15+ padding : 10px 20px ;
16+ display : flex;
17+ justify-content : flex-start;
18+ gap : 10px ;
19+ font-weight : bold;
20+ font-size : 1.1em ;
21+ }
22+
23+ .menu a {
24+ text-decoration : none;
25+ }
26+
27+ .separator {
28+ margin : 0 10px ;
29+ }
30+
31+ .content {
32+ flex-grow : 1 ;
33+ }
34+
35+ iframe {
36+ width : 100% ;
37+ height : 100% ;
38+ border : none;
39+ }
40+ </ style >
41+ </ head >
42+ < body >
43+ < div class ="menu ">
44+ < a href ="report_user.html " target ="reportFrame "> Sort by user</ a >
45+ < span class ="separator "> |</ span >
46+ < a href ="report_days.html " target ="reportFrame "> Sort by days open</ a >
47+ </ div >
48+ < div class ="content ">
49+ < iframe name ="reportFrame " src ="report_user.html "> </ iframe >
50+ </ div >
51+ </ body >
52+ </ html >
You can’t perform that action at this time.
0 commit comments