This commit is contained in:
2025-01-14 11:51:45 +01:00
parent 7a64cfdf66
commit efd30e9a28
13 changed files with 69 additions and 115 deletions

View File

@@ -72,6 +72,13 @@
version: '11',
end_of_support: 2026-06-30
}
- model: dashboard.os
pk: null
fields: {
distribution: Debian,
version: '12',
end_of_support: 2028-06-30
}
# Ubuntu Server
- model: dashboard.os
@@ -207,6 +214,13 @@
version: '22.04',
end_of_support: 2027-04-01
}
- model: dashboard.os
pk: null
fields: {
distribution: Ubuntu,
version: '24.04',
end_of_support: 2029-04-01
}
# CentOS
- model: dashboard.os

View File

@@ -26,7 +26,7 @@
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="{% url 'index' %}">Updates Dashboard</a>
<a class="navbar-brand" href="{% url 'index' %}">Hyrule - Servers information</a>
</div>
<div class="nav navbar-right top-nav">
<!-- <button class="btn btn&#45;lg btn&#45;danger disabled">Confidential information</button> -->

View File

@@ -31,7 +31,7 @@
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="{% url 'index' %}">Updates Dashboard</a>
<a class="navbar-brand" href="{% url 'index' %}">Hyrule - Servers Informations</a>
</div>
<div class="nav navbar-right top-nav">
<!-- <button class="btn btn&#45;lg btn&#45;danger disabled">Confidential information</button> -->

View File

@@ -8,7 +8,7 @@ from . import views
urlpatterns = [
# home
re_path(r'^/?$',
re_path(r'^$',
views.index,
name='index'),