@@ -42,6 +42,11 @@ def index():
42
42
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
43
43
</head>
44
44
<body>
45
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
46
+ <a href="{{ url_for('index') }}">
47
+ <img src="{{ url_for('static', filename='integrity_service_logo_256.png') }}" alt="Logo" style="height:60px; vertical-align:middle;">
48
+ </a>
49
+ </nav>
45
50
<h1>Fileset Database</h1>
46
51
<h2>Fileset Actions</h2>
47
52
<ul>
@@ -138,6 +143,11 @@ def fileset():
138
143
<link rel="stylesheet" type="text/css" href="{{{{ url_for('static', filename='style.css') }}}}">
139
144
</head>
140
145
<body>
146
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
147
+ <a href="{{{{ url_for('index') }}}}">
148
+ <img src="{{{{ url_for('static', filename='integrity_service_logo_256.png') }}}}" alt="Logo" style="height:60px; vertical-align:middle;">
149
+ </a>
150
+ </nav>
141
151
<h2><u>Fileset: { id } </u></h2>
142
152
<table>
143
153
"""
@@ -466,6 +476,11 @@ def match_fileset_route(id):
466
476
<link rel="stylesheet" type="text/css" href="{{{{ url_for('static', filename='style.css') }}}}">
467
477
</head>
468
478
<body>
479
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
480
+ <a href="{{{{ url_for('index') }}}}">
481
+ <img src="{{{{ url_for('static', filename='integrity_service_logo_256.png') }}}}" alt="Logo" style="height:60px; vertical-align:middle;">
482
+ </a>
483
+ </nav>
469
484
<h2>Matched Filesets for Fileset: { id } </h2>
470
485
<table>
471
486
<tr>
@@ -553,6 +568,11 @@ def merge_fileset(id):
553
568
<link rel="stylesheet" type="text/css" href="{{{{ url_for('static', filename='style.css') }}}}">
554
569
</head>
555
570
<body>
571
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
572
+ <a href="{{{{ url_for('index') }}}}">
573
+ <img src="{{{{ url_for('static', filename='integrity_service_logo_256.png') }}}}" alt="Logo" style="height:60px; vertical-align:middle;">
574
+ </a>
575
+ </nav>
556
576
<h2>Search Results for '{ search_query } '</h2>
557
577
<form method="POST">
558
578
<input type="text" name="search" placeholder="Search fileset">
@@ -587,6 +607,11 @@ def merge_fileset(id):
587
607
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
588
608
</head>
589
609
<body>
610
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
611
+ <a href="{{ url_for('index') }}">
612
+ <img src="{{ url_for('static', filename='integrity_service_logo_256.png') }}" alt="Logo" style="height:60px; vertical-align:middle;">
613
+ </a>
614
+ </nav>
590
615
<h2>Search Fileset to Merge</h2>
591
616
<form method="POST">
592
617
<input type="text" name="search" placeholder="Search fileset">
@@ -641,6 +666,11 @@ def possible_merge_filesets(id):
641
666
<link rel="stylesheet" type="text/css" href="{{{{ url_for('static', filename='style.css') }}}}">
642
667
</head>
643
668
<body>
669
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
670
+ <a href="{{{{ url_for('index') }}}}">
671
+ <img src="{{{{ url_for('static', filename='integrity_service_logo_256.png') }}}}" alt="Logo" style="height:60px; vertical-align:middle;">
672
+ </a>
673
+ </nav>
644
674
<h2>Possible Merges for fileset-'{ id } '</h2>
645
675
<table>
646
676
<tr><th>ID</th><th>Game Name</th><th>Platform</th><th>Language</th><th>Extra</th><th>Details</th><th>Action</th></tr>
@@ -748,6 +778,11 @@ def highlight_differences(source, target):
748
778
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
749
779
</head>
750
780
<body>
781
+ <nav style="padding: 3px; border-bottom: 1px solid #ccc;">
782
+ <a href="{{ url_for('index') }}">
783
+ <img src="{{ url_for('static', filename='integrity_service_logo_256.png') }}" alt="Logo" style="height:60px; vertical-align:middle;">
784
+ </a>
785
+ </nav>
751
786
<h2>Confirm Merge</h2>
752
787
<table border="1">
753
788
<tr><th>Field</th><th>Source Fileset</th><th>Target Fileset</th></tr>
0 commit comments