You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
778 B
11 lines
778 B
<div class="container-fluid mt-1 p-0 doctrine-index-body"> |
|
<div class="container-fluid m-2 p-0"> <%= render PaginationComponent.new(data: @doctrines, opts: { is_subject_breadcrums: true, subject_ids: params[:subject_ids], is_index_table: params[:is_index_table] }) %> </div> |
|
<hr class="mt-0"/> |
|
<% if params[:is_index_table].to_s.eql?("true") %> |
|
<div class="card-body col-sm-12 tableFixHead p-0 mt-1"> |
|
<%= render(DoctrineIndexTableComponent.new(current_user: current_user, search_results: @doctrines, opts: { is_index_table: params[:is_index_table].to_s.eql?("true") })) %> |
|
</div> |
|
<% else %> |
|
<%= render(DoctrineIndexComponent.with_collection(@doctrines, current_user: current_user, opts: { subject_ids: params[:subject_ids] })) %> |
|
<% end %> |
|
</div>
|
|
|