1
0
Fork 0

rename form and add navigation element

This commit is contained in:
Valentin Gagarin 2025-02-24 10:31:24 +01:00 committed by Kiara Grouwstra
parent af1c051498
commit a97418c30e
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
4 changed files with 8 additions and 5 deletions

View file

@ -26,6 +26,9 @@
<li>
<a href="{% url 'service_list' %}">Services</a>
</li>
<li>
<a href="{% url 'configuration_form' %}">Configuration</a>
</li>
{% load custom_tags %}
<li>

View file

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block content %}
<form method="post" enctype="multipart/form-data" action="{% url 'deploy_services' %}">
<form method="post" enctype="multipart/form-data" action="{% url 'configuration_form' %}">
{% csrf_token %}
{{ form.as_p }}

View file

@ -25,5 +25,5 @@ urlpatterns = [
path("", include("django.contrib.auth.urls")),
path("account/", views.AccountDetail.as_view(), name='account_detail'),
path("services/", views.ServiceList.as_view(), name='service_list'),
path("deploy/", views.DeployServices.as_view(), name='deploy_services'),
path("configuration/", views.ConfigurationForm.as_view(), name='configuration_form'),
]

View file

@ -25,11 +25,11 @@ class ServiceList(TemplateView):
template_name = 'service_list.html'
class DeployServices(LoginRequiredMixin, UpdateView):
template_name = 'deploy_services.html'
class ConfigurationForm(LoginRequiredMixin, UpdateView):
template_name = 'configuration_form.html'
model = Configuration
form_class = forms.Deployment
success_url = reverse_lazy('deploy_services')
success_url = reverse_lazy('configuration_form')
def get_object(self, queryset=None):
obj, created = Configuration.objects.get_or_create(