2014-07-18 16:39:39 +08:00
|
|
|
|
<% @nav_dispaly_course_all_label = 1
|
|
|
|
|
@nav_dispaly_forum_label = 1
|
|
|
|
|
@nav_dispaly_course_label = nil
|
|
|
|
|
@nav_dispaly_store_all_label = 1 %>
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<% teacher_num = teacherCount(@course) %>
|
|
|
|
|
<% student_num = studentCount(@course) %>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<title>
|
|
|
|
|
<%= h html_title %>
|
|
|
|
|
</title>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>"/>
|
|
|
|
|
<meta name="keywords" content="issue,bug,tracker"/>
|
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
|
<%= favicon %>
|
|
|
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', 'nyan', :media => 'all' %>
|
|
|
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
|
|
|
<%= javascript_heads %>
|
|
|
|
|
<%= javascript_include_tag "jquery.leanModal.min" %>
|
|
|
|
|
<%= heads_for_theme %>
|
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
|
|
|
<!-- page specific tags -->
|
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
|
</head>
|
|
|
|
|
<!--add by huang-->
|
|
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
|
<div id="wrapper">
|
|
|
|
|
<div id="wrapper2">
|
|
|
|
|
<div id="wrapper3">
|
|
|
|
|
<%= render :partial => 'layouts/base_header' %>
|
|
|
|
|
<div id="main">
|
|
|
|
|
<!--added by huang-->
|
|
|
|
|
<div class="top-content">
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
2014-11-26 11:44:39 +08:00
|
|
|
|
<td class="info_font" style="width: 240px;" rowspan="2">
|
|
|
|
|
<a href="http://<%= Setting.host_course%>" style="color: #15bccf;">
|
|
|
|
|
高校课程实践社区
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td style="color: #15bccf">
|
|
|
|
|
<strong>
|
|
|
|
|
<%= l(:label_user_location) %> :
|
|
|
|
|
</strong>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<td rowspan="2" width="250px">
|
|
|
|
|
<div class="top-content-search">
|
2015-01-19 11:01:05 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
function regexName()
|
|
|
|
|
{
|
|
|
|
|
var name = $.trim($("#name").val());
|
|
|
|
|
if(name.length == 0)
|
|
|
|
|
{
|
|
|
|
|
$("#project_name_span").text("<%= l(:label_search_conditions_not_null) %>");
|
|
|
|
|
$("#project_name_span").css('color','#ff0000');
|
|
|
|
|
$("#project_name_span").focus();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#project_name_span").text("");
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-01-08 16:16:59 +08:00
|
|
|
|
|
2015-01-19 11:01:05 +08:00
|
|
|
|
function submitSerch()
|
|
|
|
|
{
|
|
|
|
|
if(regexName()){$("#course_search_form").submit();}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2015-01-08 16:16:59 +08:00
|
|
|
|
<%= form_tag({:controller => 'courses', :action => 'search'},:id => "course_search_form", :method => :get) do %>
|
|
|
|
|
<%= text_field_tag 'name', params[:name], :size => 20, :style => "float:left" %>
|
2015-01-19 11:01:05 +08:00
|
|
|
|
<a href="#" onclick="submitSerch();" class="ButtonColor m3p10" style="float:left;padding-top: 3px; margin: 0px;padding-bottom:0px;" >
|
2015-01-08 16:16:59 +08:00
|
|
|
|
<%= l(:label_search)%>
|
|
|
|
|
</a>
|
2015-01-19 11:01:05 +08:00
|
|
|
|
<br />
|
|
|
|
|
<span id="project_name_span" style="float: left"></span>
|
2015-01-08 16:16:59 +08:00
|
|
|
|
<%#= submit_tag l(:label_search), :class => "ButtonColor m3p10", :name => nil, :style => "float:left;padding-top: 3px; margin: 0px;padding-bottom:0px;" %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2014-11-26 11:44:39 +08:00
|
|
|
|
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td>
|
|
|
|
|
<p class="top-content-list">
|
|
|
|
|
<%= link_to "主页", home_path %>
|
2014-11-26 11:44:39 +08:00
|
|
|
|
>
|
|
|
|
|
<a href="http://<%= Setting.host_course%>" class="link_other_item">
|
|
|
|
|
<%=l(:label_courses_management_platform)%>
|
|
|
|
|
</a>
|
|
|
|
|
>
|
|
|
|
|
<%= link_to @course.name, nil %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</p>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- end -->
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<!--course page-->
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<div id="sidebar">
|
|
|
|
|
<div class="spaceleft">
|
|
|
|
|
<!--informations-->
|
|
|
|
|
<div class="inf_user_image">
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top">
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<% if get_avatar?(@course) %>
|
|
|
|
|
<%= image_tag(url_to_avatar(@course), :class => "avatar2") %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<% else %>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= link_to image_tag('../images/avatars/course/course.jpg', :class => "avatar2"), course_path(@course) %>
|
|
|
|
|
<% end %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<td>
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td class="info-course">
|
|
|
|
|
<%= link_to @course.name,course_path(@course) %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center">
|
|
|
|
|
<div id="join_in_course">
|
|
|
|
|
<% if User.current.logged? %>
|
2014-10-08 11:56:41 +08:00
|
|
|
|
<% if User.current.allowed_to?(:as_teacher,@course) %>
|
2014-11-04 16:19:52 +08:00
|
|
|
|
<%= link_to l(:button_configure), {:controller => 'courses', :action => 'settings', :id => @course} %>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= render :partial => 'courses/set_course_time', :locals => {:course => @course} %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<% else %>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= join_in_course(@course, User.current) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--parameter-->
|
|
|
|
|
<div class="user_fans">
|
|
|
|
|
|
|
|
|
|
<table width="240" border="0">
|
|
|
|
|
<tr align="center" width="80px">
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<% files_count = @course.attachments.count %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
|
|
|
|
|
<td class="font_index">
|
|
|
|
|
<!-- 1 教师; 2 学生;0 全部-->
|
2014-06-12 14:57:25 +08:00
|
|
|
|
<% if User.current.member_of_course?(@course) %>
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= link_to "#{teacher_num}", course_member_path(@course, :role => 1), :course => '1' %>
|
2014-05-21 17:33:02 +08:00
|
|
|
|
<% else %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<span>
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= teacher_num %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</span>
|
2014-05-21 17:33:02 +08:00
|
|
|
|
<% end%>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td class="font_index">
|
2014-11-03 17:00:01 +08:00
|
|
|
|
<% if (User.current.logged? && @course.open_student == 1) || (User.current.member_of_course?(@course)) %>
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= link_to "#{student_num}", course_member_path(@course, :role => 2), :course => '1' %>
|
2014-05-21 17:33:02 +08:00
|
|
|
|
<% else %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<span>
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= student_num %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</span>
|
2014-05-21 17:33:02 +08:00
|
|
|
|
<% end %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</td>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td class="font_index">
|
|
|
|
|
<%= link_to files_count, course_files_path(@course) %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<tr class="font_aram">
|
|
|
|
|
<td align="center" width="80px" id="teacherCount">
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= l(:label_x_base_courses_teacher, :count => teacher_num) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td align="center" width="80px" id="studentCount">
|
2015-01-08 17:04:25 +08:00
|
|
|
|
<%= l(:label_x_base_courses_student, :count => student_num) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td align="center" width="80px">
|
|
|
|
|
<%= l(:label_x_course_data, :count => files_count) %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!--info-->
|
|
|
|
|
|
|
|
|
|
<div class="inf_user_context">
|
2014-05-20 09:12:15 +08:00
|
|
|
|
<table>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<!-- addedby bai 教师姓名加超链接、加入开课时间、结课时间与课时 -->
|
|
|
|
|
<tr>
|
2014-10-27 17:14:34 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px; width:62px">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<%= l(:label_main_teacher) %> :
|
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= link_to(@course.teacher.lastname+@course.teacher.firstname, user_path(@course.teacher)) %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr class="hidden">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
|
|
|
|
<%= l(:label_setup_time) %> :
|
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= @course.setup_time %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<tr class="hidden">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
|
|
|
|
<%= l(:label_endup_time) %> :
|
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= @course.endup_time %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<tr>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
|
|
|
|
<%= l(:label_class_period) %> :
|
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= @course.class_period %>
|
|
|
|
|
<%= l(:label_class_hour) %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<tr>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
|
|
|
|
<%= l(:label_main_term) %> :
|
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= @course.time %>
|
|
|
|
|
<%= @course.term %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<!-- end -->
|
2014-02-22 09:44:14 +08:00
|
|
|
|
|
2014-06-18 14:21:05 +08:00
|
|
|
|
<% unless @course.teacher.user_extensions.nil? || @course.teacher.user_extensions.school.nil? %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<tr>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
2014-10-28 15:47:20 +08:00
|
|
|
|
<%= l(:label_course_organizers) %> :
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
2014-10-31 20:39:09 +08:00
|
|
|
|
<% if @course.school %>
|
|
|
|
|
<a href="http://<%= Setting.host_course%>/?school_id=<%= @course.school.id%>">
|
|
|
|
|
<%= @course.school %>
|
|
|
|
|
</a>
|
|
|
|
|
<% else%>
|
|
|
|
|
|
|
|
|
|
<% end %>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<% else %>
|
|
|
|
|
<tr>
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;">
|
2014-10-28 15:47:20 +08:00
|
|
|
|
<%= l(:label_course_organizers) %> :
|
2014-10-21 14:00:45 +08:00
|
|
|
|
</td>
|
|
|
|
|
<td class="font_lighter_sidebar">
|
|
|
|
|
<%= l(:field_course_un) %>
|
|
|
|
|
</td>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
<!--description-->
|
|
|
|
|
<div class="inf_user_context">
|
|
|
|
|
<div class="font_title_left">
|
2014-07-17 16:11:32 +08:00
|
|
|
|
<%= l(:label_new_course_description) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div style="padding-bottom: 8px">
|
2014-10-16 11:09:45 +08:00
|
|
|
|
<% if @course.description && !@course.description.blank? %>
|
2014-08-28 17:30:08 +08:00
|
|
|
|
<div class="font_lighter_sidebar" style="word-break:break-all; word-wrap:break-word;">
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= textilizable @course.description %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="font_lighter_sidebar">
|
|
|
|
|
<%= l(:label_course_description_no) %>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2014-12-10 15:49:24 +08:00
|
|
|
|
<div class="created_on_course" style="padding-left: 10px;">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<strong style="color: #068d9c">
|
|
|
|
|
<%= l(:label_create_time) %>:
|
|
|
|
|
</strong>
|
|
|
|
|
<%= format_time(@course.created_at) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!--tags-->
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<div class="user_fans">
|
|
|
|
|
<!-- added by william -for tag -->
|
|
|
|
|
<div class="user_tags">
|
|
|
|
|
<div id="tags">
|
2014-06-12 16:22:35 +08:00
|
|
|
|
<%= render :partial => 'tags/tag', :locals => {:obj => @course, :object_flag => "9"} %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
<div class="user_underline"></div>
|
2015-01-12 17:01:39 +08:00
|
|
|
|
|
2015-01-22 09:39:04 +08:00
|
|
|
|
<style type="text/css">
|
|
|
|
|
.polls_btn{ height:33px;border-top:0 solid #15bed1; border-bottom:1px solid #15bed1;border-right:1px solid #cee6e6; width:224px; padding:7px 0 0 15px; }
|
|
|
|
|
.polls_btn a{font-size:14px; color:#444444;font-weight:bold;}
|
|
|
|
|
.polls_btn span{ color:#15bed1; font-size:12px; font-weight:normal;}
|
|
|
|
|
.polls_btn a{ float:left;}
|
2015-01-23 10:19:23 +08:00
|
|
|
|
.polls_n{float: left;background: #ff5d31;color: #fff;width: 32px;padding-left: 2px;height: 7px;padding-bottom: 5px;padding-top: 3px;margin-top: -4px;margin-left: 3px; }
|
2015-01-22 09:39:04 +08:00
|
|
|
|
.polls_n p{ margin-top:-4px;}
|
|
|
|
|
.cl{ clear:both; overflow:hidden; }
|
|
|
|
|
</style>
|
2015-01-17 14:59:43 +08:00
|
|
|
|
<div class="polls_btn">
|
|
|
|
|
<!--<a href="#">问卷调查<span >(12)</span></a>-->
|
2015-01-12 17:01:39 +08:00
|
|
|
|
<%= link_to l(:label_poll), poll_index_path(:polls_type => "Course", :polls_group_id => @course.id)%>
|
2015-01-22 09:39:04 +08:00
|
|
|
|
<div class="polls_n">
|
2015-01-23 10:19:23 +08:00
|
|
|
|
<p>NEW</p>
|
2015-01-22 09:39:04 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2015-01-12 17:01:39 +08:00
|
|
|
|
</div>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="content">
|
|
|
|
|
<div class="tabs_new">
|
|
|
|
|
<ul>
|
|
|
|
|
<li>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= link_to l(:label_course_overview), course_path(@course), :class => link_class(:overview) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-11-12 17:07:27 +08:00
|
|
|
|
<%= link_to l(:label_homework), homework_course_path(@course), :class => link_class([:homework,:new_homework,:edit]), :course_type => 1 %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= link_to l(:label_course_file), course_files_path(@course), :class => link_class(:files) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-12-31 15:47:43 +08:00
|
|
|
|
<%= link_to l(:label_course_news), course_news_index_path(@course), :class => link_class(:news) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= link_to l(:label_course_board), {:controller => 'boards', :action => 'index', :course_id => @course}, :class => link_class(:boards) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2014-06-05 11:55:46 +08:00
|
|
|
|
<%= link_to l(:label_course_feedback), course_feedback_path(@course), :class => link_class(:feedback) %>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<%= render_flash_messages %>
|
|
|
|
|
<%= yield %>
|
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
|
<div style="clear:both;"></div>
|
|
|
|
|
<!--gcm-->
|
2013-12-11 10:00:38 +08:00
|
|
|
|
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
<!--gcm move it mistakenly-->
|
|
|
|
|
<%= render :partial => 'layouts/base_footer' %>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="ajax-indicator" style="display:none;">
|
2014-10-21 14:00:45 +08:00
|
|
|
|
<span>
|
|
|
|
|
<%= l(:label_loading) %>
|
|
|
|
|
</span>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
2014-05-20 09:12:15 +08:00
|
|
|
|
</div>
|
2014-05-19 17:56:39 +08:00
|
|
|
|
</body>
|
2014-05-20 09:12:15 +08:00
|
|
|
|
|
2013-09-14 09:51:26 +08:00
|
|
|
|
</html>
|