{% extends "base.html" %} {% load django_bootstrap5 %} {% load bootstrap_helpers %} {% load community_utils %} {% block title %}End or assign outstanding topics{% endblock %} {% block headline %}End or assign outstanding topics{% endblock %} {% block breadcrumbs %} {% url 'members:members' as members_url %} {% with members_url=members_url|add:'?end_date__isnull=True&is_member=True' %} {% breadcrumbs "Members"|combine:members_url communitymember|combine:communitymember.get_absolute_url "Edit"|combine:communitymember.get_edit_url "End affiliation"|combine:request.path %} {% endwith %} {% endblock %} {% block content %}

Choose what to do with your open topics. You can

  1. assign a new leader within the lead organization
  2. finish the topic
  3. clone the topic under a new affiliation, and mark the old one as finished

{% csrf_token %} {{ form.non_form_errors }} {{ form.management_form }} {% for form in form.forms %}

{{ form.instance }}


{% bootstrap_form form %} {% url "topics:clone-topic" form.instance.id_name as clone_url %} {% bootstrap_button "Clone this topic" href=clone_url button_type="link" %}

{% endfor %}
{% bootstrap_button "OK" button_type="submit" extra_classes="me-2" %} {% bootstrap_button "Reset" button_type="reset" %} {% url "members:edit-profile" as edit_profile_url %} {% bootstrap_button content="Cancel" extra_classes="ms-auto" button_type="link" href=edit_profile_url %}
{% endblock %}