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:
parent
337951f1da
commit
03a9d3be66
1 changed files with 3 additions and 2 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue