first commit
This commit is contained in:
16
templates/stats.html
Normal file
16
templates/stats.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Statystyki serwera | linuxiarz.pl{% endblock %}
|
||||
{% block content %}
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Statystyki użytkowników</h5>
|
||||
<p class="card-text">Ostatnia aktualizacja: {{ last_update }}</p>
|
||||
<p class="card-text">Serwer: {{ server_name }}</p>
|
||||
{% for graph in graphs %}
|
||||
<h6>{{ graph.title }}</h6>
|
||||
<img src="/static/graphs/{{ graph.file }}" alt="{{ graph.title }}" class="img-fluid graph">
|
||||
{% endfor %}
|
||||
<p class="mt-3">Aktualny czas: {{ now }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user