2014-07-01 10:19:07 +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 %>
|
|
|
|
|
|
|
|
|
|
<%
|
|
|
|
|
is_autorized_user = (current_user==@member.user || current_user.is_admin?)
|
|
|
|
|
if is_autorized_user
|
|
|
|
|
@writing_conferences = WritingConference.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
|
|
|
|
|
else
|
|
|
|
|
@writing_conferences = WritingConference.where(is_hidden: false, member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
|
|
|
|
|
end
|
|
|
|
|
%>
|
|
|
|
|
|
|
|
|
|
<% if is_autorized_user %>
|
|
|
|
|
<div class="list-active">
|
|
|
|
|
<div class="btn-group">
|
|
|
|
|
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => toggle_hide_admin_writing_conferences_path(member_profile_id: params[:id], disable: 'true') ) %>
|
|
|
|
|
<%= link_to('Show', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-show", :rel => toggle_hide_admin_writing_conferences_path(member_profile_id: params[:id], disable: 'false') ) %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
|
|
<table class="table table-condensed table-striped main-list">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<% if is_autorized_user %>
|
|
|
|
|
<th><input type="checkbox" /></th>
|
|
|
|
|
<% end -%>
|
|
|
|
|
<th class="span1"><%= t('personal_plugins.year') %></th>
|
|
|
|
|
<th><%= t('module_name.personal_conference') %></th>
|
|
|
|
|
<% if not @user%>
|
|
|
|
|
<th><%= t('personal_plugins.author') %></th>
|
|
|
|
|
<% end %>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<% @writing_conferences.each do |writing_conference| %>
|
|
|
|
|
<tr id="<%= dom_id writing_conference %>" class="<%= writing_conference.is_hidden ? "checkHide" : "" %>">
|
|
|
|
|
<% if is_autorized_user %>
|
|
|
|
|
<td>
|
|
|
|
|
<%= check_box_tag 'to_change[]', writing_conference.id.to_s, false, :class => "list-check" %>
|
|
|
|
|
</td>
|
|
|
|
|
<% end %>
|
|
|
|
|
<td><%= writing_conference.year %></td>
|
|
|
|
|
<td>
|
2014-07-04 04:06:42 +00:00
|
|
|
|
<%= link_to writing_conference.paper_title, OrbitHelper.url_to_plugin_show(writing_conference.to_param,'personal_conference'), target: "blank"%>
|
2014-07-01 10:19:07 +00:00
|
|
|
|
<div class="quick-edit">
|
|
|
|
|
<ul class="nav nav-pills hide">
|
|
|
|
|
<li><%= link_to t('edit'), '/admin/members/'+@member.to_param+'/writing_conferences/'+writing_conference.id+'/edit' %></li>
|
|
|
|
|
<li><%= link_to t(:delete_), admin_writing_conference_path(id: writing_conference.id, member_profile_id: @member.id), method: :delete, remote: true, data: { confirm: t('sure?') } %></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td><%= writing_conference.authors %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="bottomnav clearfix">
|
|
|
|
|
<% if is_autorized_user %>
|
|
|
|
|
<div class="action pull-right">
|
|
|
|
|
<%= link_to content_tag(:i, nil, :class => 'icon-edit') +' '+ t('setting'),'/admin/members/'+@member.to_param+'/writing_conferences/frontend_setting', :class => 'btn btn-primary' %>
|
|
|
|
|
<%= link_to content_tag(:i, nil, :class => 'icon-plus') +' '+ t('new_'),
|
|
|
|
|
'/admin/members/'+@member.to_param+'/writing_conferences/new', :class => 'btn btn-primary' %>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div class="pagination pagination-centered">
|
|
|
|
|
<%= paginate @writing_conferences, :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>
|