aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/templates/base.html2
-rw-r--r--backend/templates/logs_display.html8
2 files changed, 6 insertions, 4 deletions
diff --git a/backend/templates/base.html b/backend/templates/base.html
index 5d62ffa..8466bc0 100644
--- a/backend/templates/base.html
+++ b/backend/templates/base.html
@@ -39,7 +39,7 @@
<footer>
<p>&copy; 2025 - Anhgelus Morthuuzh</p>
<p>«&thinsp;{{ .Quote }}&thinsp;»</p>
- <p><a href="/legal">Mentions légales</a>, <a href="https://git.anhgelus.world/anhgelus/small-web">Code source</a></p>
+ <p><a href="/legal">Mentions légales</a>, <a href="https://git.anhgelus.world/anhgelus/small-web">Code source</a>.</p>
</footer>
</body>
</html>
diff --git a/backend/templates/logs_display.html b/backend/templates/logs_display.html
index d76d7c2..adafacf 100644
--- a/backend/templates/logs_display.html
+++ b/backend/templates/logs_display.html
@@ -14,9 +14,11 @@
{{ end }}
{{ if ne .PagesNumber 1 }}
<div class="pagination">
- {{ if ne .CurrentPage 1 }}<a href="?page={{ before .CurrentPage }}">Précédent</a>{{else}}<p></p>{{end}}
- <p>{{ .CurrentPage }}/{{ .PagesNumber }}</p>
- {{ if ne .CurrentPage .PagesNumber }}<a href="?page={{ next .CurrentPage }}">Suivant</a>{{else}}<p></p>{{end}}
+ <div>
+ {{ if ne .CurrentPage 1 }}<a href="?page={{ before .CurrentPage }}">Précédent</a>{{else}}<p></p>{{end}}
+ <p>{{ .CurrentPage }}/{{ .PagesNumber }}</p>
+ {{ if ne .CurrentPage .PagesNumber }}<a href="?page={{ next .CurrentPage }}">Suivant</a>{{else}}<p></p>{{end}}
+ </div>
</div>
{{ end }}
</article>