parent
f8c5a67396
commit
64c078abf2
@ -0,0 +1,33 @@
|
||||
<table class="edu-pop-table edu-txt-center" cellspacing="0" cellpadding="0" style="table-layout: fixed;">
|
||||
<thead>
|
||||
<th width="10%">ID</th>
|
||||
<th width="15%">代理人登录名</th>
|
||||
<th width="15%">代理人姓名</th>
|
||||
<th width="20%">注册情况</th>
|
||||
<th width="20%">竞赛报名</th>
|
||||
<th width="20%">ip</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @user_agents.each_with_index do |ua, index| %>
|
||||
<% user = User.find_by_login(ua.key) %>
|
||||
<tr>
|
||||
<td><%= index+1 %></td>
|
||||
<td class="edu-txt-left"><span><%= link_to ua.key, user_path(ua.key), :target => "_blank" %></span></td>
|
||||
<td><%= link_to user.try(:show_real_name), user_path(user), target:'_blank' %></td>
|
||||
<td><%= register_info(ua) %></td>
|
||||
<td><%= user.agent_type.to_i == UserAgent::USER_COMPETITION ? "已报名" : "未报名" %></td>
|
||||
<td><%= ua.ip %></td>
|
||||
<td><%= "理由" %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="cl"></div>
|
||||
<div style="text-align:center;" class="new_expand">
|
||||
<div class="pages_user_show" style="width:auto; display:inline-block;margin: 18px 0;">
|
||||
<ul id="homework_pository_ref_pages">
|
||||
<%= pagination_links_full @agents_pages, @agents_count, :per_page_links => false, :flag => true, :is_new => true %>
|
||||
</ul>
|
||||
<div class="cl"></div>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,9 @@
|
||||
<div class="edu-con-bg01 clearfix mt10 bor-grey-e pt10 pb10">
|
||||
<div class="pl15">
|
||||
统计总计:
|
||||
引流总人数<span class="color-red"><%= @agents_count %></span>人,
|
||||
</div>
|
||||
</div>
|
||||
<div class="edu-con-bg01 mt15" id="managements_department_part_list">
|
||||
<%= render :partial => "welcome/user_agent_list" %>
|
||||
</div>
|
@ -0,0 +1,10 @@
|
||||
class AddIpForUserActions < ActiveRecord::Migration
|
||||
def up
|
||||
add_column :user_actions, :ip, :string
|
||||
|
||||
UserAgent.where("agent_type is null").update_all(:agent_type => 1)
|
||||
end
|
||||
|
||||
def down
|
||||
end
|
||||
end
|
Loading…
Reference in new issue