116 lines
4.0 KiB
Plaintext
116 lines
4.0 KiB
Plaintext
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', :media => 'all' %>
|
||
<h3>
|
||
<%=l(:label_latest_login_user_list)%>
|
||
</h3>
|
||
<%= render 'tab_users' %>
|
||
<h3>
|
||
<%=l(:label_latest_login_user_list)%>
|
||
</h3>
|
||
<%= form_tag({}, :method => :get) do %>
|
||
<fieldset>
|
||
<legend>
|
||
<%= l(:label_filter_plural) %>
|
||
</legend>
|
||
<label style="float:left">开始日期:</label>
|
||
<%= text_field_tag 'startdate', params[:startdate], :size => 15, :onchange=>"$('#ui-datepicker-div').hide()", :style=>"float:left"%>
|
||
<%= calendar_for('startdate')%><span style="float: left "> </span>
|
||
<label style="float:left">结束日期:</label>
|
||
<%= text_field_tag 'enddate', params[:enddate], :size => 15, :onchange =>"$('#ui-datepicker-div').hide()", :style=>"float:left"%>
|
||
<%= calendar_for('enddate')%>
|
||
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
|
||
<%= link_to l(:button_clear), {:controller => 'admin', :action => 'latest_login_users'}, :class => 'icon icon-reload' %>
|
||
</fieldset>
|
||
<% end %>
|
||
|
||
|
||
|
||
<div class="autoscroll">
|
||
<table class="list" style="width: 100%;table-layout: fixed">
|
||
<thead>
|
||
<tr>
|
||
<th style="width: 30px;">
|
||
序号
|
||
</th>
|
||
<th style="width: 70px;">
|
||
登录时间
|
||
</th>
|
||
<th style="width: 30px;">
|
||
用户id
|
||
</th>
|
||
<th style="width: 50px;">
|
||
用户姓名
|
||
</th>
|
||
<th style="width: 50px;">
|
||
用户登录名
|
||
</th>
|
||
<th style="width: 50px;">
|
||
用户身份
|
||
</th>
|
||
<th style="width: 50px;">
|
||
用户单位
|
||
</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<% @count=@page * 30 %>
|
||
<% for user in @users do %>
|
||
<tr>
|
||
<% @count +=1 %>
|
||
<td align="center">
|
||
<%=@count %>
|
||
</td>
|
||
<td align="center">
|
||
<%=format_time(user.last_login_on) %>
|
||
</td>
|
||
<td align="center">
|
||
<%=user.id %>
|
||
</td>
|
||
<td align="center" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title='<% if user.try(:realname) == ' '%><%= user.login%><% else %><%=user.try(:realname) %><% end %>'>
|
||
<% if user.try(:realname) == ' '%>
|
||
<%= link_to(user.login, user_path(user)) %>
|
||
<% else %>
|
||
<%= link_to(user.try(:realname), user_path(user)) %>
|
||
<% end %>
|
||
</td>
|
||
<td align="center">
|
||
<%=link_to(user.login, user_path(user)) %>
|
||
</td>
|
||
<td align="center">
|
||
<%if user.user_extensions%>
|
||
<% case user.user_extensions.identity %>
|
||
<% when 0 %>
|
||
<%='老师' %>
|
||
<% when 1 %>
|
||
<%='学生' %>
|
||
<% when 2 %>
|
||
<%='企业' %>
|
||
<% when 3 %>
|
||
<%='开发者' %>
|
||
<% else %>
|
||
<%='未知身份' %>
|
||
<% end %>
|
||
<% end%>
|
||
</td>
|
||
<td align="center">
|
||
<% unless user.user_extensions.nil? %>
|
||
<% if user.user_extensions.identity.to_i == 0 %>
|
||
<!--优先取school中校名,如果校名不存在就取occupation-->
|
||
<% occupation = user.user_extensions.school_id.nil? ? "" : (School.where("id =?", user.user_extensions.school_id)).first.try(:name) %>
|
||
<%= occupation.blank? ? user.user_extensions.occupation : occupation %>
|
||
<% else %>
|
||
<%= user.user_extensions.occupation %>
|
||
<% end %>
|
||
<% end %>
|
||
</td>
|
||
</tr>
|
||
<% end %>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<div class="pagination">
|
||
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %>
|
||
</div>
|
||
|
||
<% html_title(l(:label_latest_login_user_list)) -%>
|