kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
15 years ago
|
<%
|
||
|
rates = @rates unless rates
|
||
|
project = @project unless project
|
||
13 years ago
|
|
||
15 years ago
|
current_rate = @user.current_rate(project)
|
||
15 years ago
|
%>
|
||
|
|
||
15 years ago
|
<div class="contextual">
|
||
15 years ago
|
<% if project && User.current.allowed_to?({:controller => 'hourly_rates', :action => 'edit'}, project) %>
|
||
|
<%= link_to l(:button_update), {:controller => 'hourly_rates', :action => 'edit', :project_id => project, :id => @user}, :class => 'icon icon-edit', :accesskey => accesskey(:edit) %>
|
||
|
<% end %>
|
||
15 years ago
|
</div>
|
||
15 years ago
|
<h3><%=h project.name %><%= (" - " + number_to_currency(current_rate.rate)) if current_rate %></h3>
|
||
15 years ago
|
<% if rates.empty? %>
|
||
15 years ago
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
||
|
<% else %>
|
||
15 years ago
|
<table class="list rates">
|
||
15 years ago
|
<thead><tr>
|
||
|
<th><%= l(:label_valid_from) %></th>
|
||
|
<th class="currency"><%= l(:label_rate) %></th>
|
||
15 years ago
|
<th><%= l(:caption_current_rate) %></th>
|
||
15 years ago
|
</tr></thead>
|
||
|
<tbody id="rates_body">
|
||
15 years ago
|
<% current_rate = @user.current_rate(project, false) %>
|
||
|
<%- rates.each do |rate| -%>
|
||
15 years ago
|
<tr class="<%= cycle('odd', 'even') %>">
|
||
|
<td style="padding-right: 1em;"><%= rate.valid_from %></td>
|
||
|
<td class="currency"><%= number_to_currency(rate.rate) %></td>
|
||
12 years ago
|
<td><%= rate == current_rate ? image_tag('check.png', :alt => l(:general_text_Yes)) : "" %></td>
|
||
15 years ago
|
</tr>
|
||
|
<%- end -%>
|
||
|
</tbody>
|
||
|
</table>
|
||
13 years ago
|
<% end %>
|