socialforge/app/views/layouts/base_memos.html.erb

95 lines
4.3 KiB
Plaintext
Raw Normal View History

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">
2013-11-27 14:52:36 +08:00
<div class="top-content-search" style="display:none">
2013-11-24 20:09:24 +08:00
<%= form_tag(:controller => 'projects', :action => "search", :method => :get) do %>
<%= text_field_tag 'name', params[:name], :size => 20 %>
<%= hidden_field_tag 'project_type', params[:project_type] %>
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
<% end %>
</div>
</td>
</tr>
<tr>
<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>
<div class="forums-description"><%= textilizable @forum.description %></div>
</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" >
<span class="forums-avatar-left"><%= image_tag(url_to_avatar(@forum.creator), :class => 'vatar-size') %></span>
2013-11-25 21:42:59 +08:00
<span class="forums-avatar-right"><%=link_to @forum.creator.show_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>
</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>
2013-11-24 20:09:24 +08:00
<%= render :partial => 'layouts/base_footer'%>
</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