24 lines
602 B
HTML
24 lines
602 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} deployment details: {{ deployment.name }} {% endblock %}
|
|
|
|
{% block content %}
|
|
<table>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>name</th>
|
|
<th>type</th>
|
|
<th>status</th>
|
|
</tr>
|
|
<tr id="{{ deployment.id }}">
|
|
<th name="id">{{ deployment.id }}</th>
|
|
<th name="name">{{ deployment.name }}</th>
|
|
<th name="type">{{ deployment.type }}</th>
|
|
<th name="status">{{ deployment.status }}</th>
|
|
</tr>
|
|
</table>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<input type="submit" value="delete">
|
|
</form>
|
|
{% endblock %} |