first commit
This commit is contained in:
62
Base/templates/BankAccounts/List.html
Normal file
62
Base/templates/BankAccounts/List.html
Normal file
@@ -0,0 +1,62 @@
|
||||
{% extends "BaseLogin.html" %}
|
||||
{% block title %} List {% endblock %}
|
||||
{% block content %}
|
||||
<h1> Bancos </h1><br>
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6">
|
||||
<form method="get" action="{% url 'BankAccountsListView' %}">
|
||||
<div class="input-group">
|
||||
<input type="text" class="form-control" name="name"
|
||||
placeholder="Nome" value="{{ request.GET.name }}">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
<i class="bi bi-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{# {% if perms.brands.add_brands %}#}
|
||||
<div class="col-md-6">
|
||||
<a href="{% url 'BankAccountsCreateView' %}" class="btn btn-success float-end">
|
||||
<i class="bi bi-plus"></i> Criar </a>
|
||||
</div>
|
||||
{# {% endif %}#}
|
||||
</div>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead class="thead-dark">
|
||||
<tr align="center">
|
||||
{# <th> ID </th>#}
|
||||
<th> Nome </th>
|
||||
<th > Descrição </th>
|
||||
<th width="15%"> Ações </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for Bank in BankAccounts %}
|
||||
<tr align="center">
|
||||
{# <td> {{ Bank.id }} </td>#}
|
||||
<td> {{ Bank.name }} </td>
|
||||
<td> {{ Bank.description }} </td>
|
||||
<td>
|
||||
<a href="{% url 'BankAccountsDetailView' Bank.id %}" class="btn btn-info btn-sm">
|
||||
<i class="bi bi-eye"></i>
|
||||
</a>
|
||||
{# {% if perms.brands.change_brands %}#}
|
||||
<a href="{% url 'BankAccountsUpdateView' Bank.id %}" class="btn btn-warning btn-sm">
|
||||
<i class="bi bi-pencil"></i>
|
||||
</a>
|
||||
{# {% endif %}#}
|
||||
{# {% if perms.brands.delete_brands %}#}
|
||||
<a href="{% url 'BankAccountsDeleteView' Bank.id %}" class="btn btn-danger btn-sm">
|
||||
<i class="bi bi-trash"></i>
|
||||
</a>
|
||||
{# {% endif %}#}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% include 'components/_pagination.html' %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user