{% extends 'generic/object_list.html' %}
{% load buttons %}
{% comment %}
__author__ = "Andrea Dainese"
__contact__ = "andrea@adainese.it"
__copyright__ = "Copyright 2022, Andrea Dainese"
__license__ = "GPLv3"
{% endcomment %}
{% comment %}
Add "Discover Selected" button to the generic template.
{% endcomment %}
{% block bulk_buttons %}
{% if 'bulk_discover' in actions %}
{% endif %}
{% if 'bulk_edit' in actions %}
{% bulk_edit_button model query_params=request.GET %}
{% endif %}
{% if 'bulk_delete' in actions %}
{% bulk_delete_button model query_params=request.GET %}
{% endif %}
{% endblock %}