1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

22 lines
1004 B
HTML
Raw Normal View History

2021-03-17 22:25:20 -07:00
<div class="dropdown m-1">
<button type="button" class="btn btn-sm btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="bi bi-download"></i>&nbsp;Export
</button>
<ul class="dropdown-menu dropdown-menu-end">
2021-03-17 22:25:20 -07:00
<li><a class="dropdown-item" href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export=table">Current View</a></li>
<li><a class="dropdown-item" href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export">Default Format</a></li>
{% if export_templates %}
<li class="divider"></li>
{% for et in export_templates %}
<li>
<a class="dropdown-item"
href="?{% if url_params %}{{ url_params.urlencode }}&{% endif %}export={{ et.name }}"{% if et.description %}
title="{{ et.description }}"{% endif %}>
{{ et.name }}
</a>
</li>
{% endfor %}
{% endif %}
</ul>
2021-03-04 16:58:56 -05:00
</div>