preinfo split forms

This commit is contained in:
2025-07-10 10:51:05 +03:00
parent 26633e5e51
commit 050f1868ff
15 changed files with 201 additions and 106 deletions
+10
View File
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>$Title$</title>
</head>
<body>
$END$
</body>
</html>
+16
View File
@@ -0,0 +1,16 @@
{% extends 'client-base.html' %}
{% load static %}
{% block content %}
<div class="container">
<h2>Container Preinfo</h2>
<p>Manage your container preinfo details here.</p>
</div>
<form id="preinfoForm" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit preinfo">
</form>
{%endblock content %}