first commit
This commit is contained in:
27
Base/templates/Dashboards/DashboardProf/List_prof.html
Normal file
27
Base/templates/Dashboards/DashboardProf/List_prof.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<div class="col-12">
|
||||
<form method="get" action="{% url 'DashboardProf' %}" id="Form"
|
||||
class="d-flex flex-wrap gap-3">
|
||||
|
||||
{% for Prof in Professionals %}
|
||||
|
||||
<input type="radio"
|
||||
class="btn-check"
|
||||
name="Prof"
|
||||
id="prof_{{ Prof.id }}"
|
||||
value="{{ Prof.id }}"
|
||||
{% if request.GET.Prof == Prof.id|stringformat:"i" %}checked{% endif %}
|
||||
onchange="this.form.submit();">
|
||||
|
||||
<label class="btn btn-outline-primary fw-semibold fs-5 shadow-sm rounded-pill"
|
||||
for="prof_{{ Prof.id }}">
|
||||
{{ Prof.name }} {{ Prof.symbol }}
|
||||
</label>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
Reference in New Issue
Block a user