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

162 lines
5.5 KiB
Plaintext
Raw Normal View History

2014-03-29 10:57:36 +08:00
<% @nav_dispaly_project_label = 1 %>
<!DOCTYPE html>
<html lang="en">
<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 %>
<%= 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 %>
<%= heads_for_theme %>
<%= call_hook :view_layouts_base_html_head %>
<%= javascript_include_tag "ckeditor/ckeditor.js" %>
2014-03-29 10:57:36 +08:00
<!-- 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">
<div class="top-content">
<table>
<tr>
<td class="info_font" style="width: 240px; color: #15bccf">开源项目社区</td>
2014-03-29 10:57:36 +08:00
<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>
2014-04-21 08:54:11 +08:00
<tr>
<td style="padding-left: 8px"><%= link_to request.host()+"/open_source_projects", :controller => 'open_source_projects', :action => 'index' %></td>
<td ><%= link_to l(:field_homepage), home_path %> > <%= link_to "开源项目社区", :controller => 'open_source_projects', :action => 'index' %> > <%=link_to @open_source_project.name, open_source_project_path(@open_source_project) %></td>
</tr>
2014-03-29 10:57:36 +08:00
</table>
</div>
<div id="sidebar">
<div class="spaceleft">
<div class="inf_user_image">
2014-05-05 15:33:24 +08:00
<% @open_source_project = OpenSourceProject.find(params[:open_source_project_id] || params[:id])%>
2014-03-29 10:57:36 +08:00
<table>
<tr>
2014-04-08 09:02:12 +08:00
<td><%= image_tag('../images/avatars/Project/0', :class => 'avatar2') %></td>
2014-03-29 10:57:36 +08:00
<td>
<div class="info-course">
<%= @open_source_project.name %>
</div><div>
2014-04-06 22:12:16 +08:00
</div>
<div style="margin-left: 20px;">
<%= apply_super_user(@open_source_project, User.current) %>
2014-03-29 10:57:36 +08:00
</div></td>
</tr>
</table>
</div>
<div class="user_fans">
<table width="240" border="0">
<tr align="center" width="80px">
<td class="font_index"><%= @open_source_project.users_count %></td>
2014-05-05 15:33:24 +08:00
<td class="font_index"><%= @open_source_project.topics.count %></td>
<td class="font_index"><%= @open_source_project.commit_count %></td>
2014-03-29 10:57:36 +08:00
</tr>
<tr class="font_aram">
<td align="center" width="70px"> 贡献者</td>
<td align="center" width="100px">讨论</td>
2014-04-08 20:42:11 +08:00
<td align="center" width="70px"> 代码提交</td>
2014-03-29 10:57:36 +08:00
<!-- <td align="center" width="58px"><%= l(:label_attachment) %></td> -->
</tr>
</table>
<div class="user_underline"></div>
</div>
<div class="inf_user_context">
<div class="font_title_left">
<%= l(:label_overview) %>
2014-03-29 10:57:36 +08:00
</div>
<div style="padding-bottom: 8px">
<div class="font_lighter_sidebar">
<%= textilizable @open_source_project.description %>
</div>
<div class="created_on_project">
<strong style="color: #15bccf"><%= l(:label_create_time) %></strong><%= format_time(@open_source_project.created_at) %>
</div>
<div class="created_on_project">
<strong style="color: #15bccf"> 项目来源:</strong><%= link_to @open_source_project.url, @open_source_project.url %>
</div>
2014-03-29 10:57:36 +08:00
</div>
<div class="user_underline"></div>
</div>
<!--tags-->
<div class="user_fans">
<!-- added by william -for tag -->
<div class="user_tags">
<div id="tags">
<%= render :partial => 'tags/tag', :locals => {:obj => @open_source_project, :object_flag => "8"}%>
</div>
</div>
2014-03-29 10:57:36 +08:00
<!-- tag -->
</div>
2014-04-06 22:12:16 +08:00
<!--tool-->
<% if @open_source_project.admin?(User.current) %>
<div class="user_underline"></div>
<div class="font_title_left">
管理
</div>
<div class="tools ">
2014-04-21 08:54:11 +08:00
<ul>
2014-04-06 22:12:16 +08:00
<li>
<%= link_to "版主申请" ,master_apply_open_source_project_path(@open_source_project) %>
2014-04-21 08:54:11 +08:00
</li>
2014-04-06 22:12:16 +08:00
</ul>
</div>
<% end %>
2014-03-29 10:57:36 +08:00
<!--tool-->
<div class="user_underline"></div>
</div>
</div>
2014-04-06 22:12:16 +08:00
<div id="content">
<%#= <div class="tabs_new">
2014-03-29 10:57:36 +08:00
2014-04-03 14:41:04 +08:00
</div>%>
2014-03-29 10:57:36 +08:00
<%= render_flash_messages %>
<%= yield %>
<%= call_hook :view_layouts_base_content %>
<div style="clear:both;"></div>
</div>
<%= render :partial => 'layouts/base_footer'%>
</div>
<div id="ajax-indicator" style="display:none;">
<span><%= l(:label_loading) %></span>
</div>
<div id="ajax-modal" style="display:none;"></div>
</div>
</div>
<%= call_hook :view_layouts_base_body_bottom %>
</div>
</body>
</html>