{% extends "admin/change_list.html" %} {% load i18n admin_urls sage_mailbox %} {% block object-tools %}
{% if has_add_permission %}
  • {% url cl.opts|admin_urlname:'add' as add_url %} {% blocktranslate with cl.opts.verbose_name as name %}Send Email{% endblocktranslate %}
  • {% endif %} {% get_last_path_part as last_path_part %} {% if last_path_part == "trash" %}
  • {% trans "Sync Trash" %}
  • {% trans "Clear Trash" %}
  • {% trans "Restore Trash" %}
  • {% elif last_path_part == "sent" %}
  • {% trans "Sync Sent" %}
  • {% elif last_path_part == "junk" %}
  • {% trans "Sync Junk" %}
  • {% else %}
  • {% trans "Sync Emails" %}
  • {% endif %}
    {% endblock %}