personal_plugin_generator/template_generator/app/views/plugin/personal_plugin_template/_profile.html.erb

75 lines
3.0 KiB
Plaintext
Raw Normal View History

2021-02-27 04:19:24 +00:00
<% content_for :page_specific_css do %>
<%= stylesheet_link_tag "lib/list-check" %>
<% end %>
<% content_for :page_specific_javascript do %>
<%= javascript_include_tag "lib/list-check" %>
<% end %>
<%
if has_access?
2021-03-01 15:44:52 +00:00
@plugin_templates = PluginTemplate.where(member_profile_id: @member.id).order_by(plugin_template_sort_hash).page(params[:page]).per(10)
2021-02-27 04:19:24 +00:00
else
2021-03-01 15:44:52 +00:00
@plugin_templates = PluginTemplate.where(is_hidden: false, member_profile_id: @member.id).order_by(plugin_template_sort_hash).page(params[:page]).per(10)
2021-02-27 04:19:24 +00:00
end
%>
<% if has_access? %>
<div class="list-active">
<div class="btn-group">
2021-03-01 15:44:52 +00:00
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => toggle_hide_admin_plugin_templates_path(member_profile_id: @member.id.to_s, disable: 'true') ) %>
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => toggle_hide_admin_plugin_templates_path(member_profile_id: @member.id.to_s, disable: 'false') ) %>
2021-02-27 04:19:24 +00:00
</div>
</div>
<% end -%>
<table class="table table-condensed table-striped main-list">
<thead>
<tr>
<% if has_access? %>
<th><input type="checkbox" /></th>
<% end -%>
2021-03-01 15:44:52 +00:00
<% parse_again_start %>
<th><%= t('personal_plugin_template.backend_profile_fields') %></th>
<% parse_again_end %>
2021-02-27 04:19:24 +00:00
</tr>
</thead>
<tbody>
<% @plugin_templates.each do |plugin_template| %>
<tr id="<%= dom_id plugin_template %>" class="<%= plugin_template.is_hidden ? "checkHide" : "" %>">
<% if has_access? %>
<td>
<%= check_box_tag 'to_change[]', plugin_template.id.to_s, false, :class => "list-check" %>
</td>
<% end %>
2021-03-01 15:44:52 +00:00
<% parse_again_start %>
<td>backend_profile_fields_contents</td>
<% parse_again_end %>
2021-02-27 04:19:24 +00:00
</tr>
<% end %>
</tbody>
</table>
<div class="bottomnav clearfix">
<% if has_access? %>
<div class="action pull-right">
<%= link_to content_tag(:i, nil, :class => 'icon-edit') +' '+ t('setting'),'/admin/members/'+@member.to_param+'/plugin_templates/frontend_setting', :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') +' '+ t('new_'),
'/admin/members/'+@member.to_param+'/plugin_templates/new', :class => 'btn btn-primary' %>
</div>
<% end %>
<div class="pagination pagination-centered">
<%= paginate @plugin_templates, :params => {:direction => params[:direction], :sort => params[:sort] } %>
</div>
</div>
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3><%= t(:sure?) %></h3>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true"><%= t(:close) %></button>
<button class="delete-item btn btn-danger"><%= t(:submit) %></button>
</div>
</div>