##// END OF EJS Templates
Bulgarian translation updated by Ivan Cenov (#12254)...
Bulgarian translation updated by Ivan Cenov (#12254) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10766 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9714:6c9401b6242a
r10544:cb7ab9bc0ca1
Show More
show.html.erb
99 lines | 4.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Adds a 'Add subprojects' permission....
r3124 <div class="contextual">
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <% if User.current.allowed_to?(:add_subprojects, @project) %>
<%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'new', :parent_id => @project}, :class => 'icon icon-add' %>
<% end %>
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 <% if User.current.allowed_to?(:close_project, @project) %>
<% if @project.active? %>
<%= link_to l(:button_close), close_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock' %>
<% else %>
<%= link_to l(:button_reopen), reopen_project_path(@project), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-unlock' %>
<% end %>
<% end %>
Jean-Philippe Lang
Adds a 'Add subprojects' permission....
r3124 </div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221 <h2><%=l(:label_overview)%></h2>
Toshi MARUYAMA
remove trailing tabs from app/views/projects/show.html.erb...
r7110
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 <% unless @project.active? %>
<p class="warning"><span class="icon icon-lock"><%= l(:text_project_closed) %></span></p>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="splitcontentleft">
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 <% if @project.description.present? %>
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <div class="wiki">
<%= textilizable @project.description %>
</div>
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 <% end %>
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <ul>
Toshi MARUYAMA
Rails3: view: html_safe for auto_link of project homepage...
r8836 <% unless @project.homepage.blank? %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <li><%=l(:field_homepage)%>: <%= link_to h(@project.homepage), @project.homepage %></li>
Toshi MARUYAMA
Rails3: view: html_safe for auto_link of project homepage...
r8836 <% end %>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <% if @subprojects.any? %>
Toshi MARUYAMA
Rails3: view: html_safe for auto_link of project homepage...
r8836 <li><%=l(:label_subproject_plural)%>:
Toshi MARUYAMA
Rails3: view: use html_safe for subprojects at projects/show.html.erb...
r7468 <%= @subprojects.collect{|p| link_to(h(p), :action => 'show', :id => p)}.join(", ").html_safe %></li>
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <% end %>
<% @project.visible_custom_field_values.each do |custom_value| %>
<% if !custom_value.value.blank? %>
<li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
<% end %>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <% end %>
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 </ul>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Added project module concept....
r714 <% if User.current.allowed_to?(:view_issues, @project) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221 <div class="issues box">
Jean-Philippe Lang
Removes large icons....
r3065 <h3><%=l(:label_issue_tracking)%></h3>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221 <% for tracker in @trackers %>
<li><%= link_to h(tracker.name), :controller => 'issues', :action => 'index', :project_id => @project,
:set_filter => 1,
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 "tracker_id" => tracker.id %>:
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
:total => @total_issues_by_tracker[tracker].to_i) %>
</li>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</ul>
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <p>
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/show.html.erb...
r7112 <%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %>
<% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
| <%= link_to(l(:label_calendar), :controller => 'calendars', :action => 'show', :project_id => @project) %>
<% end %>
<% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
| <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %>
<% end %>
</p>
Jean-Philippe Lang
Initial commit...
r2 </div>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>
Eric Davis
Added two new plugin hooks to the Project Overview page...
r2594 <%= call_hook(:view_projects_show_left, :project => @project) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div class="splitcontentright">
Eric Davis
Refactor: extract Members Box to partial....
r3895 <%= render :partial => 'members_box' %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 <% if @news.any? && authorize_for('news', 'index') %>
Jean-Philippe Lang
Removes large icons....
r3065 <div class="news box">
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221 <h3><%=l(:label_news_latest)%></h3>
Jean-Philippe Lang
various modifications to prevent xss...
r96 <%= render :partial => 'news/news', :collection => @news %>
Jean-Philippe Lang
Moved ProjectsController#list_news to NewsController#index....
r875 <p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.rhtml....
r6221 </div>
Jean-Philippe Lang
News box on project/show is hidden if there is no news to display....
r448 <% end %>
Eric Davis
Added two new plugin hooks to the Project Overview page...
r2594 <%= call_hook(:view_projects_show_right, :project => @project) %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 </div>
Jean-Philippe Lang
Application layout refactored....
r736 <% content_for :sidebar do %>
Jean-Philippe Lang
Replaces TimeEntry.visible_by with a visible scope....
r5029 <% if @total_hours.present? %>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_spent_time) %></h3>
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
Jean-Philippe Lang
Additional "Log time" link on project overview (#11181)....
r9714 <p>
<% if User.current.allowed_to?(:log_time, @project) %>
<%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
<% end %>
<%= link_to(l(:label_details), project_time_entries_path(@project)) %> |
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %></p>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Eric Davis
Added plugin hook, :view_projects_show_sidebar_bottom...
r2754 <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% content_for :header_tags do %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %>
Jean-Philippe Lang
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche)....
r641 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_overview)) -%>