SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit fe456a61 authored by George Katsikas's avatar George Katsikas :goat:
Browse files

add edit profile specialty button for nominations

parent 3d257d62
No related branches found
No related tags found
1 merge request!58[Fellowship Nominations] Rework the fellowship nomination system and UI
<div class="p-4"> <div class="p-4">
<div class="row mb-0"> <div class="row mb-0">
<div id="profile-{{ nomination.profile.id }}-specialties"
class="border border-danger mb-4 d-none-empty"></div>
<div class="col-12 col-md mb-3"> <div class="col-12 col-md mb-3">
<div class="card"> <div class="card">
<div class="card-header">Details</div> <div class="card-header">Details</div>
...@@ -11,17 +15,9 @@ ...@@ -11,17 +15,9 @@
</tr> </tr>
<tr> <tr>
<td>Specialties</td> <td>Specialties</td>
<td> <td id="profile-{{ nomination.profile.id }}-specialties-code-display">
{% for specialty in nomination.profile.specialties.all %} {% include "profiles/_hx_profile_specialty_codes_edit.html" with profile=nomination.profile %}
<div class="single d-inline"
data-specialty="{{ specialty }}"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="{{ specialty }}">{{ specialty.code }}</div>
{% empty %}
undefined
{% endfor %}
</td> </td>
</tr> </tr>
......
...@@ -2,49 +2,63 @@ ...@@ -2,49 +2,63 @@
<div class="col"> <div class="col">
<table class="table"> <table class="table">
<caption style="caption-side: top;">Specialties (current)</caption> <caption style="caption-side: top;">Specialties (current)</caption>
{% for spec in profile.specialties.all %} {% for spec in profile.specialties.all %}
<tr> <tr>
<td>{{ spec }}</td> <td>{{ spec }}</td>
<td> <td>
<form hx-post="{% url 'profiles:_hx_profile_specialties' profile_id=profile.id %}" <form hx-post="{% url 'profiles:_hx_profile_specialties' profile_id=profile.id %}"
hx-target="#profile-{{ profile.id }}-specialties" hx-target="#profile-{{ profile.id }}-specialties">
> {% csrf_token %}
{% csrf_token %} <input type="hidden" name="action" value="remove" />
<input type="hidden" name="action" value="remove"> <input type="hidden" name="spec_slug" value="{{ spec.slug }}" />
<input type="hidden" name="spec_slug" value="{{ spec.slug }}"> <button class="btn btn-sm btn-danger">Remove</button>
<button class="btn btn-sm btn-danger">Remove</button> </form>
</form> </td>
</td> </tr>
</tr>
{% empty %} {% empty %}
<tr> <tr>
<td colspan="2">None defined</td> <td colspan="2">None defined</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
</div> </div>
<div class="col"> <div class="col">
<table class="table"> <table class="table">
<caption style="caption-side: top;">Other specialties</caption> <caption style="caption-side: top;">Other specialties</caption>
{% for spec in other_specialties.all %} {% for spec in other_specialties.all %}
<tr> <tr>
<td>{{ spec }}</td> <td>{{ spec }}</td>
<td> <td>
<form hx-post="{% url 'profiles:_hx_profile_specialties' profile_id=profile.id %}" <form hx-post="{% url 'profiles:_hx_profile_specialties' profile_id=profile.id %}"
hx-target="#profile-{{ profile.id }}-specialties" hx-target="#profile-{{ profile.id }}-specialties">
> {% csrf_token %}
{% csrf_token %} <input type="hidden" name="action" value="add" />
<input type="hidden" name="action" value="add"> <input type="hidden" name="spec_slug" value="{{ spec.slug }}" />
<input type="hidden" name="spec_slug" value="{{ spec.slug }}"> <button class="btn btn-sm btn-primary">Add</button>
<button class="btn btn-sm btn-primary">Add</button> </form>
</form> </td>
</td> </tr>
</tr>
{% empty %} {% empty %}
<tr> <tr>
<td colspan="2">None defined</td> <td colspan="2">None defined</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
</div> </div>
</div> </div>
<button class="btn btn-success mb-2 text-white"
hx-get="{% url "common:empty" %}"
hx-swap="innerHTML"
hx-target="#profile-{{ profile.id }}-specialties">Done</button>
<div hx-swap-oob="innerHTML:#profile-{{ profile.id }}-specialties-code-display">
{% include "profiles/_hx_profile_specialty_codes_edit.html" with profile=profile %}
</div>
{% for specialty in profile.specialties.all %}
<div class="single d-inline"
data-specialty="{{ specialty }}"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="{{ specialty }}">{{ specialty.code }}</div>
{% empty %}
<span class="badge bg-danger">unknown</span>
{% endfor %}
<a class="p-2 mt-2"
hx-get="{% url 'profiles:_hx_profile_specialties' profile_id=profile.id %}"
hx-target="#profile-{{ profile.id }}-specialties">edit</a>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment