export.html 1.0 KB

1234567891011121314151617181920
  1. <div class="btn-group">
  2. <button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  3. <span class="mdi mdi-database-export" aria-hidden="true"></span>
  4. Export <span class="caret"></span>
  5. </button>
  6. <ul class="dropdown-menu dropdown-menu-right">
  7. <li><a href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export=table">Current view</a></li>
  8. <li><a href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export">Legacy CSV</a></li>
  9. {% if export_templates %}
  10. <li class="divider"></li>
  11. {% for et in export_templates %}
  12. <li><a href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export={{ et.name }}"{% if et.description %} title="{{ et.description }}"{% endif %}>{{ et.name }}</a></li>
  13. {% endfor %}
  14. {% endif %}
  15. {% if add_exporttemplate_link %}
  16. <li class="divider"></li>
  17. <li><a href="{{ add_exporttemplate_link }}">Add export template... </a></li>
  18. {% endif %}
  19. </ul>
  20. </div>