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

93 lines
4.2 KiB
Plaintext
Raw Normal View History

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 %>
<!-- 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">
<div class="top-content-search">
<%= 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 "forge.trustie.net/projects", :controller => 'projects', :action => 'index', :project_type => 0 %></a></td>
<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>
</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 => 'avatar2') %></span>
<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? %>
<div class="forums-tags"><%= render :partial => 'tags/tag', :locals => {:obj => @forum.creator,:object_flag => "1"} %></div>
<% 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'%>
<%= debug(params) if Rails.env.development? %>
</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