35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load bootstrap4 %}
|
|
{% load font_awesome %}
|
|
{% block 'content' %}
|
|
<h6>{% trans "restreamconfig_configuration_header" %}</h6>
|
|
<hr class="my-4">
|
|
<div class="btn-toolbar mb-4" role="toolbar">
|
|
<div class="btn-group" role="group">
|
|
<a href="{% url 'restream:restreamconfig_create' %}" type="button" class="btn btn-sm btn-outline-success">{% fa 'plus' %} {% trans "create" %}</a>
|
|
</div>
|
|
</div>
|
|
<table class="table">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col">{% trans "name" %}</th>
|
|
<th scope="col" class="text-right">{% trans "actions" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for object in object_list %}
|
|
<tr>
|
|
<th scope="ro">{{ object.name }}</th>
|
|
<td align="right">
|
|
<div class="btn-group" role="group">
|
|
<a href="{% url 'restream:restreamconfig_detail' pk=object.pk %}" type="button" class="btn btn-sm btn-primary">{% trans "details" %}</a>
|
|
<a href="{% url 'restream:restreamconfig_delete' pk=object.pk %}" type="button" class="btn btn-sm btn-danger">{% fa 'trash' %}</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|