routeros_update/templates/routeros_changelog.html
Mateusz Gruszczyński f9215590ea new css and functions
2025-02-27 00:02:29 +01:00

70 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}Changelog RouterOS Kanały publikacji{% endblock %}
{% block content %}
<div class="container py-4">
<h2 class="mb-4">Changelog RouterOS według kanałów publikacji</h2>
<div class="row">
<!-- Sekcja Stable -->
<div class="col-md-4">
<h3 class="text-success">Stable</h3>
{% for entry in entries_stable %}
<div class="card mb-3">
<div class="card-header bg-success text-white">
<h5 class="mb-0">
{{ entry.version }}
<small>({{ entry.timestamp.strftime('%Y-%b-%d') }})</small>
</h5>
</div>
<div class="card-body">
<pre style="white-space: pre-wrap;">{{ entry.details }}</pre>
</div>
</div>
{% else %}
<p>Brak wpisów.</p>
{% endfor %}
</div>
<!-- Sekcja RC -->
<div class="col-md-4">
<h3 class="text-warning">RC</h3>
{% for entry in entries_rc %}
<div class="card mb-3">
<div class="card-header bg-warning text-white">
<h5 class="mb-0">
{{ entry.version }}
<small>({{ entry.timestamp.strftime('%Y-%b-%d') }})</small>
</h5>
</div>
<div class="card-body">
<pre style="white-space: pre-wrap;">{{ entry.details }}</pre>
</div>
</div>
{% else %}
<p>Brak wpisów.</p>
{% endfor %}
</div>
<!-- Sekcja Beta -->
<div class="col-md-4">
<h3 class="text-info">Beta</h3>
{% for entry in entries_beta %}
<div class="card mb-3">
<div class="card-header bg-info text-white">
<h5 class="mb-0">
{{ entry.version }}
<small>({{ entry.timestamp.strftime('%Y-%b-%d') }})</small>
</h5>
</div>
<div class="card-body">
<pre style="white-space: pre-wrap;">{{ entry.details }}</pre>
</div>
</div>
{% else %}
<p>Brak wpisów.</p>
{% endfor %}
</div>
</div>
<div class="mt-4">
<a href="{{ url_for('dashboard') }}" class="btn btn-secondary">Powrót do dashboardu</a>
</div>
</div>
{% endblock %}