This commit is contained in:
2025-07-15 20:57:15 +03:00
parent f6c78a20a3
commit 0ffd79cee9
51 changed files with 1227 additions and 653 deletions
+5 -3
View File
@@ -3,20 +3,22 @@
{% block table_header %}
<th style="display: none;">Select</th>
<th>Company</th>
<th>Line name</th>
<th>Short name</th>
<th>Description</th>
{% endblock table_header %}
{% block table_data %}
<td>{{ object.company }}</td>
<td>{{ object.name }}</td>
<td>{{ object.short_name }}</td>
<td>{{ object.description }}</td>
{% endblock %}
{% block buttons %}
<a href="{% url 'client_line_create' %}" class="btn btn-primary">Create line</a>
<a href="#" id="editBtn" data-url="{% url 'client_line_update' pk=0 %}" class="btn btn-primary" disabled>Edit Preinfo</a>
<a href="{% url 'employee_line_create' %}" class="btn btn-primary">Create line</a>
<a href="#" id="editBtn" data-url="{% url 'employee_line_update' pk=0 %}" class="btn btn-primary" disabled>Edit Preinfo</a>
<button id="deleteButton" class="btn btn-danger">Delete Preinfo</button>
{% endblock buttons %}
@@ -25,5 +27,5 @@
{% endblock %}
{% block modal_header %}
<h2>edit line</h2>
<h2>edit line</h2>
{% endblock modal_header %}