{% extends 'scipost/_personal_page_base.html' %} {% load bootstrap %} {% block pagetitle %}: contributors filter{% endblock pagetitle %} {% block breadcrumb_items %} {{block.super}} Pool {% endblock %} {% block content %}

Contributors filter

{% csrf_token %} {{ form|bootstrap }}
{% if form.is_bound %} {% if names_not_found %}
{% for contributor in names_not_found %}{{ contributor }}{% endfor %}
{% endif %} {% if names_found %}
{% for contributor in names_found %}{{ contributor }}{% endfor %}
{% endif %} {% endif %} {% endblock %}