summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/header_actions.html
blob: 6544f295561b14848e1fa7808e0b7b4d591f0e9a (plain)
1
2
3
4
5
6
7
8
9
10
<div class="actions pull-right">
  {% for action in header_actions %}
  <a href="{{ action.url }}"
     title="{{ action.name }}"
     class="btn btn-default btn-lg btn-no-border {% if action.ajax_modal %}ajax-modal{% endif %}">
    {% if action.icon %}<span class="fa {{ action.icon }}"></span>{% endif %}
    {% if action.show_name %}{{ action.name }}{% endif %}
  </a>
  {% endfor %}
</div>