feat(servers): update install server page template

Refactor install server page to extend from a more specific base template located within the servers module. This change improves template organization and maintainability by ensuring server-related pages derive from a dedicated server template, facilitating consistent styling and functionality across all server management interfaces.
This commit is contained in:
Kumi 2024-06-05 16:58:48 +02:00
parent 337951f1da
commit 03a9d3be66
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,5 +1,6 @@
{% extends "base.html" %} {% block title %}Install Game Server{% endblock %} {%
block content %}
{% extends "servers/base.html" %}
{% block title %}Install Game Server{% endblock %}
{% block content %}
<h1>Install Game Server</h1>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}