git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@4 ff88604e-da85-c949-a72f-fc3aa3ba3724
53 lines
1.7 KiB
Plaintext
53 lines
1.7 KiB
Plaintext
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; 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 'application', :media => 'all' %>
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
<%= javascript_heads %>
|
|
<%= heads_for_theme %>
|
|
<!--[if IE 6]>
|
|
<style type="text/css">
|
|
* html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
|
|
body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
|
|
</style>
|
|
<![endif]-->
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
<!-- page specific tags -->
|
|
<%= yield :header_tags -%>
|
|
</head>
|
|
|
|
<body class="<%=h body_css_classes %>">
|
|
|
|
<% content_for(:header_tags) do %>
|
|
<%= stylesheet_link_tag :contacts, :plugin => 'redmine_contacts' %>
|
|
<% end %>
|
|
|
|
<% content_for :sidebar do %>
|
|
<h3><%= l(:label_task_plural) %></h3>
|
|
<%= link_to l(:label_contacts_view_all), { :controller => 'contacts', :action => 'index', :project_id => @project} %>
|
|
|
|
|
<%= link_to l(:label_deal_plural), { :controller => 'deals', :action => 'index', :project_id => @project} %>
|
|
|
|
|
<%= link_to l(:label_contract_plural), { :controller => 'contracts', :action => 'index', :project_id => @project} %>
|
|
|
|
<% end %>
|
|
|
|
<div id="content">
|
|
<%= render_flash_messages %>
|
|
<%= yield %>
|
|
<%= call_hook :view_layouts_base_content %>
|
|
<div style="clear:both;"></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|