2014-07-18 16:39:39 +08:00
|
|
|
<% @nav_dispaly_home_path_label = 1
|
|
|
|
@nav_dispaly_main_course_label = 1
|
|
|
|
@nav_dispaly_main_project_label = 1
|
|
|
|
@nav_dispaly_main_contest_label = 1 %>
|
2014-01-23 10:08:46 +08:00
|
|
|
<% @nav_dispaly_forum_label = 1%>
|
2013-11-23 20:02:15 +08:00
|
|
|
<!DOCTYPE html>
|
2013-11-24 20:09:24 +08:00
|
|
|
<html lang="en">
|
2013-11-23 20:02:15 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title><%= h html_title %></title>
|
|
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
|
|
<meta name="keywords" content="issue,bug,tracker" />
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
<%= favicon %>
|
2013-11-24 20:09:24 +08:00
|
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', 'nyan', :media => 'all' %>
|
2013-11-23 20:02:15 +08:00
|
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
|
|
<%= javascript_heads %>
|
|
|
|
<%= heads_for_theme %>
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
2013-11-26 16:32:08 +08:00
|
|
|
<%= javascript_include_tag "ckeditor/ckeditor.js" %>
|
2013-11-23 20:02:15 +08:00
|
|
|
<!-- page specific tags -->
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
</head>
|
2013-11-24 20:09:24 +08:00
|
|
|
<!--add by huang-->
|
2013-11-23 20:02:15 +08:00
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="wrapper2">
|
2013-11-24 20:09:24 +08:00
|
|
|
<div id="wrapper3">
|
|
|
|
<%=render :partial => 'layouts/base_header'%>
|
|
|
|
<div id="main">
|
|
|
|
<!-- added by bai -->
|
|
|
|
|
|
|
|
<div class="top-content">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td class="info_font" style="width: 240px; color: #15bccf">软件项目托管社区</td>
|
|
|
|
<td style="width: 430px; color: #15bccf"><strong><%= l(:label_user_location) %> : </strong></td>
|
|
|
|
<td rowspan="2" width="250px">
|
2015-01-30 11:00:18 +08:00
|
|
|
<div class="top-content-search">
|
|
|
|
<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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function submitSerch()
|
|
|
|
{
|
|
|
|
if(regexName()){$("#project_search_form").submit();}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<%= form_tag(projects_search_path, :method => :get, :id => "project_search_form") do %>
|
|
|
|
<%= text_field_tag 'name', params[:name], :size => 20, :onkeyup => "regexName();", :style => "float:left" %>
|
|
|
|
<%= hidden_field_tag 'project_type', params[:project_type] %>
|
|
|
|
<%#= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
|
|
|
|
<a href="#" onclick="submitSerch();" class="ButtonColor m3p10" style="float:left;padding-top: 3px; margin: 0px;padding-bottom:0px;" >
|
|
|
|
<%= l(:label_search)%>
|
|
|
|
</a>
|
|
|
|
<br />
|
|
|
|
<span id="project_name_span" style="float: left"></span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2014-02-25 11:27:36 +08:00
|
|
|
<td style="padding-left: 8px"><a><%= link_to request.host()+"/forums", forums_path %></a></td>
|
2013-12-05 17:15:18 +08:00
|
|
|
<td><p class="top-content-list"><%=link_to l(:label_home),home_path %> > <%=link_to '公共贴吧', :controller => 'forums', :action => 'index' %> > <%=link_to @forum.name, forum_path(@forum) %> > <%=link_to @memo.subject, forum_memo_path(@forum, @memo) %></p></td>
|
2013-11-24 20:09:24 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
|
|
<!--informations-->
|
2013-11-25 21:42:59 +08:00
|
|
|
<div class="sidebar-forums">
|
|
|
|
<div class="forums-line">
|
|
|
|
<div class="forums-title"><%= @forum.name %></div>
|
2014-09-12 17:31:23 +08:00
|
|
|
<div class="forums-description"><%= textAreailizable @forum.description %></div>
|
2013-11-25 21:42:59 +08:00
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
<!--informations-->
|
2013-11-25 21:42:59 +08:00
|
|
|
<div class="formus-first-title" >创建人信息</div>
|
|
|
|
<div class="forums-info">
|
|
|
|
<div style="padding-top: 20px" >
|
2013-11-28 17:15:42 +08:00
|
|
|
<span class="forums-avatar-left"><%= image_tag(url_to_avatar(@forum.creator), :class => 'vatar-size') %></span>
|
2014-09-10 10:06:22 +08:00
|
|
|
<span class="forums-avatar-right">
|
|
|
|
<% unless @forum.creator.nil? %>
|
|
|
|
<%=link_to @forum.creator.name, user_path(@forum.creator) %>
|
|
|
|
<div>
|
|
|
|
<%= link_to l(:label_user_watcher)+"("+User.watched_by(@forum.creator.id).count.to_s+")" ,:controller=>"users", :action=>"user_watchlist", :id => @forum.creator.id %>
|
|
|
|
<%= link_to l(:label_x_user_fans, :count => User.current.watcher_users(User.current.id).count)+"("+@forum.creator.watcher_users(@forum.creator.id).count.to_s+")", :controller=>"users", :action=>"user_fanslist", :id => @forum.creator.id %>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
</div>
|
2013-11-25 21:42:59 +08:00
|
|
|
<!--tags-->
|
|
|
|
<% if User.current.logged? || User.current.admin? %>
|
2013-11-29 18:14:49 +08:00
|
|
|
<!-- <div class="forums-tags">< %= render :partial => 'tags/tag', :locals => {:obj => @forum.creator,:object_flag => "1"} %></div> -->
|
|
|
|
<div class="forums-tags"><%= render :partial => 'tags/tag', :locals => {:obj => @forum,:object_flag => "5"} %></div>
|
2013-11-25 21:42:59 +08:00
|
|
|
<% end %>
|
2013-11-24 20:09:24 +08:00
|
|
|
</div>
|
2013-11-23 20:02:15 +08:00
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
<div id="content">
|
|
|
|
<%= render_flash_messages %>
|
|
|
|
<%= yield %>
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
<div style="clear:both;"></div>
|
2013-11-23 20:02:15 +08:00
|
|
|
</div>
|
2014-10-08 16:18:41 +08:00
|
|
|
<%= render :partial => 'layouts/base_footer'%>
|
2013-11-24 20:09:24 +08:00
|
|
|
</div>
|
2013-11-23 20:02:15 +08:00
|
|
|
|
2013-11-24 20:09:24 +08:00
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
<span><%= l(:label_loading) %></span>
|
2013-11-23 20:02:15 +08:00
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
2013-11-23 20:02:15 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-11-24 20:09:24 +08:00
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
2013-11-23 20:02:15 +08:00
|
|
|
</div>
|
|
|
|
</body>
|
2013-11-24 20:09:24 +08:00
|
|
|
</html>
|
2013-11-23 20:02:15 +08:00
|
|
|
|