2013-08-04 14:23:12 +08:00
|
|
|
<!--add by huang-->
|
2014-05-29 18:34:34 +08:00
|
|
|
|
2014-05-15 09:20:36 +08:00
|
|
|
<!--span class="font_lighter" >温馨提示:项目可以是一次作业,也可以是别人或者自己创建的一项小工程~</span-->
|
2014-05-29 18:34:34 +08:00
|
|
|
<div class="menu-div">
|
|
|
|
<div class="menu">
|
|
|
|
<%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new', :course => 0, :project_type => 0}, :class => 'icon icon-add') if(User.current.allowed_to?(:add_project, nil, :global => true) && @user == User.current)%>
|
|
|
|
<ul><%#链接绑定在页面最下方的jQuery%>
|
|
|
|
<li mode='take' class="<%= "on" if @state.eql?(0)%>"><%=l :label_project_take%></li>
|
|
|
|
<li mode='watched' class="<%= "on" if @state.eql?(1)%>"><%=l :label_has_watched_project%></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="height:20px"></div>
|
|
|
|
|
|
|
|
<%#= watch_projects @state %>
|
2013-10-28 20:09:15 +08:00
|
|
|
<% unless @memberships.empty? %>
|
2013-10-24 10:13:00 +08:00
|
|
|
<div class="content_frame">
|
2013-08-01 10:33:49 +08:00
|
|
|
<ul class="user_project_sort">
|
|
|
|
<% for membership in @memberships %>
|
2013-08-12 16:17:03 +08:00
|
|
|
<li>
|
2013-08-30 09:34:21 +08:00
|
|
|
<table width="660" border="0" align="center" style="border-bottom: 1px dashed rgb(204, 204, 204); margin-bottom: 10px;font-size:14px;">
|
2013-08-01 10:33:49 +08:00
|
|
|
<tr>
|
2013-11-01 15:48:23 +08:00
|
|
|
<td colspan="2" valign="top" width="50" ><%= image_tag(url_to_avatar(membership.project), :class => 'avatar') %></td>
|
2013-08-01 10:33:49 +08:00
|
|
|
<td>
|
|
|
|
<table width="580" border="0">
|
|
|
|
<tr>
|
2013-08-08 22:19:15 +08:00
|
|
|
<td colspan="2" valign="top"><strong> <%= link_to_user(membership.user) if membership.respond_to?(:user) %></strong>
|
2013-10-24 10:13:00 +08:00
|
|
|
<span class="font_lighter"> <%= l(:label_peoject_take_in) %></span> <%= link_to_project(membership.project) %></td>
|
2013-08-01 10:33:49 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" width="580" >
|
|
|
|
<p class="font_description">
|
|
|
|
<%= membership.project.description%>
|
|
|
|
</p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2013-12-27 13:46:19 +08:00
|
|
|
<td align="left"><span class="font_lighter"><%= l(:label_create_time) %> : <%= format_time(membership.created_on) %></span></td><!-- modified by ming -->
|
2013-09-12 10:41:15 +08:00
|
|
|
<td align="right" ><%= h membership.roles.sort.collect(&:to_s).join(', ') %> </td>
|
2013-08-01 10:33:49 +08:00
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<% else %>
|
2013-08-08 09:38:54 +08:00
|
|
|
<% if @user != User.current %>
|
2013-08-15 10:13:47 +08:00
|
|
|
<p class="font_description"><%= l(:label_project_un) %></p>
|
|
|
|
<% else %>
|
2013-11-06 17:00:14 +08:00
|
|
|
<p class="font_description"><%= l(:label_project_unadd) %></p>
|
2013-08-08 09:38:54 +08:00
|
|
|
<% end %>
|
2013-08-11 21:09:12 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<% end %>
|
2013-08-11 21:09:12 +08:00
|
|
|
<%= call_hook :view_account_left_bottom, :user => @user %>
|
|
|
|
</div>
|
2014-03-07 11:28:52 +08:00
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
$(document).ready(function($) {
|
|
|
|
$("#content .tabs_new~").find("a").attr("target", "_blank");
|
|
|
|
$("#content .tabs_new~ .pagination").find("a").removeAttr("target");
|
2014-05-29 18:34:34 +08:00
|
|
|
$('[mode=take]').click(function(event) {window.location.href='<%=user_projects_user_url%>'; });
|
|
|
|
$('[mode=watched]').click(function(event) {window.location.href='<%=watch_projects_user_url(type: 1)%>'; });
|
2014-03-07 11:28:52 +08:00
|
|
|
});
|
|
|
|
</script>
|