2014-01-10 09:18:09 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="<%= current_language %>">
|
2014-01-11 09:08:15 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2014-01-15 21:00:07 +08:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
2014-01-11 09:08:15 +08:00
|
|
|
<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 %>
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
</head>
|
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="wrapper2">
|
|
|
|
<div id="wrapper3">
|
|
|
|
<%= render :partial => 'layouts/base_header'%>
|
|
|
|
<div>
|
2014-01-10 09:18:09 +08:00
|
|
|
<div id="main">
|
2014-01-11 09:08:15 +08:00
|
|
|
<div class="top-content">
|
|
|
|
<table>
|
|
|
|
<tr>
|
2014-01-17 08:55:58 +08:00
|
|
|
<td class="info_font" style="width: 240px; color: #15bccf"><%=t(:label_stores_index)%></td>
|
2014-01-11 09:08:15 +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" style="display:none;">
|
|
|
|
<%= form_tag(: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>
|
2014-02-25 15:43:03 +08:00
|
|
|
<td style="padding-left: 8px"><%= link_to request.host()+"/stores" , stores_url %></td>
|
2014-01-17 08:55:58 +08:00
|
|
|
<td><p class="top-content-list"><%=link_to l(:label_home),home_path %> > <%=link_to l(:label_stores_index),stores_url %> </p></td>
|
2014-01-11 09:08:15 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2014-01-15 17:28:53 +08:00
|
|
|
<%= render_flash_messages %>
|
2014-01-11 09:08:15 +08:00
|
|
|
<div id="top_field">
|
|
|
|
<%= yield :top_field %>
|
|
|
|
</div>
|
|
|
|
<div id="sidebaraa">
|
2014-01-10 09:18:09 +08:00
|
|
|
<%= yield :sidebar %>
|
|
|
|
<%= view_layouts_base_sidebar_hook_response %>
|
|
|
|
</div>
|
2014-01-11 09:08:15 +08:00
|
|
|
<div id="store_content" style="padding-top: 0px;">
|
2014-01-10 09:18:09 +08:00
|
|
|
<%= yield %>
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
</div>
|
|
|
|
<%= render :partial => 'layouts/base_footer'%>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-01-11 09:08:15 +08:00
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
</div>
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
|
|
|
|
2014-01-10 09:18:09 +08:00
|
|
|
</div>
|
2014-01-11 09:08:15 +08:00
|
|
|
</div>
|
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
|
|
</body>
|
2014-01-10 09:18:09 +08:00
|
|
|
</html>
|