FossilRepo
| 4ce269c… | ragelink | 1 | {% extends "base.html" %} |
| 4ce269c… | ragelink | 2 | {% block title %}Remove Member — Fossilrepo{% endblock %} |
| 4ce269c… | ragelink | 3 | |
| 4ce269c… | ragelink | 4 | {% block content %} |
| 4ce269c… | ragelink | 5 | <div class="mb-6"> |
| 4ce269c… | ragelink | 6 | <a href="{% url 'organization:team_detail' slug=team.slug %}" class="text-sm text-brand-light hover:text-brand">← Back to {{ team.name }}</a> |
| 4ce269c… | ragelink | 7 | </div> |
| 4ce269c… | ragelink | 8 | |
| 4ce269c… | ragelink | 9 | <div class="mx-auto max-w-lg"> |
| 4ce269c… | ragelink | 10 | <div class="rounded-lg bg-gray-800 p-6 shadow border border-gray-700"> |
| 4ce269c… | ragelink | 11 | <h2 class="text-lg font-semibold text-gray-100">Remove Member</h2> |
| 4ce269c… | ragelink | 12 | <p class="mt-2 text-sm text-gray-400"> |
| 4ce269c… | ragelink | 13 | Are you sure you want to remove <strong class="text-gray-100">{{ member_user.username }}</strong> from <strong class="text-gray-100">{{ team.name }}</strong>? |
| 4ce269c… | ragelink | 14 | </p> |
| 4ce269c… | ragelink | 15 | <form method="post" class="mt-6 flex justify-end gap-3"> |
| 4ce269c… | ragelink | 16 | {% csrf_token %} |
| 4ce269c… | ragelink | 17 | <a href="{% url 'organization:team_detail' slug=team.slug %}" |
| 4ce269c… | ragelink | 18 | class="rounded-md bg-gray-700 px-4 py-2 text-sm font-semibold text-gray-100 shadow-sm ring-1 ring-inset ring-gray-600 hover:bg-gray-600"> |
| 4ce269c… | ragelink | 19 | Cancel |
| 4ce269c… | ragelink | 20 | </a> |
| 4ce269c… | ragelink | 21 | <button type="submit" |
| 4ce269c… | ragelink | 22 | class="rounded-md bg-red-600 px-4 py-2 text-sm font-semibold text-white shadow-sm hover:bg-red-500"> |
| 4ce269c… | ragelink | 23 | Remove |
| 4ce269c… | ragelink | 24 | </button> |
| 4ce269c… | ragelink | 25 | </form> |
| 4ce269c… | ragelink | 26 | </div> |
| 4ce269c… | ragelink | 27 | </div> |
| 4ce269c… | ragelink | 28 | {% endblock %} |