payments
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user