first commit
This commit is contained in:
62
Base/templates/Professional/List.html
Normal file
62
Base/templates/Professional/List.html
Normal file
@@ -0,0 +1,62 @@
|
||||
{% extends "BaseLogin.html" %}
|
||||
{% block title %} List {% endblock %}
|
||||
{% block content %}
|
||||
<h1> Profissinais </h1><br>
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6">
|
||||
<form method="get" action="{% url 'ProfessionalListView' %}">
|
||||
<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 'ProfessionalCreateView' %}" 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 width="10%"> Simbolo </th>
|
||||
<th> Nome </th>
|
||||
<th width="10%"> Porcentagem </th>
|
||||
<th width="15%"> Ações </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for Prof in Professionals %}
|
||||
<tr align="center">
|
||||
<td> {{ Prof.symbol }} </td>
|
||||
<td> {{ Prof.name }} </td>
|
||||
<td> {{ Prof.percentage }} % </td>
|
||||
<td>
|
||||
<a href="{% url 'ProfessionalDetailView' Prof.id %}" class="btn btn-info btn-sm">
|
||||
<i class="bi bi-eye"></i>
|
||||
</a>
|
||||
{# {% if perms.brands.change_brands %}#}
|
||||
<a href="{% url 'ProfessionalUpdateView' Prof.id %}" class="btn btn-warning btn-sm">
|
||||
<i class="bi bi-pencil"></i>
|
||||
</a>
|
||||
{# {% endif %}#}
|
||||
{# {% if perms.brands.delete_brands %}#}
|
||||
<a href="{% url 'ProfessionalDeleteView' Prof.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