You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
869 B
HTML
30 lines
869 B
HTML
{% extends 'list-crud.html' %}
|
|
{% load static %}
|
|
|
|
{% block table_header %}
|
|
<th style="display: none;">Select</th>
|
|
<th>Line name</th>
|
|
<th>Short name</th>
|
|
<th>Description</th>
|
|
{% endblock table_header %}
|
|
|
|
{% block table_data %}
|
|
<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>
|
|
<button id="deleteButton" class="btn btn-danger">Delete Preinfo</button>
|
|
{% endblock buttons %}
|
|
|
|
{% block create_modal_header %}
|
|
<h2>Create line</h2>
|
|
{% endblock %}
|
|
|
|
{% block modal_header %}
|
|
<h2>edit line</h2>
|
|
{% endblock modal_header %}
|