20 lines
1.2 KiB
Plaintext
20 lines
1.2 KiB
Plaintext
<div class="pr_info_join fl">
|
|
<!--关注:非项目成员-->
|
|
<div id="join_in_project_applied">
|
|
<%= render :partial => "projects/applied_status" %>
|
|
</div>
|
|
<!--配置项目-->
|
|
<% if User.current.admin? || User.current.allowed_to?({:controller => 'projects', :action => 'settings'}, @project) %>
|
|
<%= link_to "<span class='pr_setting'></span>#{l(:button_configure)}".html_safe, settings_project_path(@project), :class => "pr_join_a" %>
|
|
<% end %>
|
|
<!--项目类型-->
|
|
<% if (User.current.login? && User.current.member_of?(@project) && Member.where(:user_id => User.current.id, :project_id => @project.id).first.roles.to_s.include?("Manager")) || User.current.admin? %>
|
|
<%= link_to "<span class='#{typeclass}'></span>#{text}".html_safe,"javascript:void(0)" ,:onClick => "show_window();", :class => "pr_join_a",:id => "setting_project_type"%>
|
|
<% end %>
|
|
<!--退出项目-->
|
|
<% if (User.current.member_of? @project) && User.current.login? && !User.current.admin &&
|
|
!Member.where(:user_id => User.current.id, :project_id => @project.id).first.roles.to_s.include?("Manager") %>
|
|
<%= exit_project_link(@project) %>
|
|
<% end %>
|
|
</div>
|