orbit-basic/app/views/admin/default_index/_index.html.erb

56 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<% content_for :page_specific_javascript do %>
<%= javascript_include_tag "lib/modal-preview" if @approvable %>
<script>
$(document).ready(function(){
$('.reject_info').tooltip({
placement : 'bottom'
});
});
</script>
<% end %>
<% content_for :right_nav do %>
<!-- <div class="pull-right">
<input id="filter-input" class="search-query input-medium" type="text" placeholder="<%= t(:search_) %>" value="">
</div> -->
<% if @filterable %>
<ul class="nav nav-pills filter-nav pull-right">
<% @filter_fields.each do |field| %>
<li class="accordion-group">
<div class="accordion-heading">
<a href="#collapse-<%= field[:translation] %>" data-toggle="collapse" data-parent="#filter" class="accordion-toggle"><%= t(field[:translation]) %></a>
</div>
</li>
<% end %>
</ul>
<div class="filter-group accordion-group">
<% @filter_fields.each do |field| %>
<div class="accordion-body collapse" id="collapse-<%= field[:translation] %>">
<%= render partial: 'admin/default_index/filter', locals: {field: field} %>
</div>
<% end %>
</div>
<% end %>
<% end %>
<%= index_table %>
<%= @index_footer %>
<div id="delete_tags" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel"><%= t('tag.delete') %></h3>
</div>
<div class="modal-body tags">
<span class="text-warning text-center"><%= t('tag.warning.delete') %></span>
<hr>
<ul class="tags-groups checkbox-card">
</ul>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<%= link_to t(:delete_), nil, class: "delete-tags btn btn-danger", method: :post, remote: true %>
</div>
</div>