details.rhtml
46 lines
| 2.0 KiB
| text/html+ruby
|
RhtmlLexer
|
r365 | <div class="contextual"> | ||
|
r1162 | <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}, :class => 'icon icon-report') %> | ||
|
r365 | <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %> | ||
</div> | ||||
<h2><%= l(:label_spent_time) %></h2> | ||||
|
r1159 | <% if @issue %> | ||
<h3><%= link_to(@project.name, {:action => 'details', :project_id => @project}) %> / <%= link_to_issue(@issue) %></h3> | ||||
<% end %> | ||||
|
r365 | |||
|
r1159 | <% form_remote_tag( :url => {}, :method => :get, :update => 'content' ) do %> | ||
<%= hidden_field_tag 'project_id', params[:project_id] %> | ||||
<%= hidden_field_tag 'issue_id', params[:issue_id] if @issue %> | ||||
|
r365 | |||
|
r1159 | <fieldset><legend><%= l(:label_date_range) %></legend> | ||
<p> | ||||
<%= radio_button_tag 'period_type', '1', !@free_period %> | ||||
<%= select_tag 'period', options_for_period_select(params[:period]), | ||||
:onchange => 'this.form.onsubmit();', | ||||
:onfocus => '$("period_type_1").checked = true;' %> | ||||
</p> | ||||
<p> | ||||
<%= radio_button_tag 'period_type', '2', @free_period %> | ||||
<%= l(:label_date_from) %> | ||||
<%= text_field_tag 'from', @from, :size => 10, :onfocus => '$("period_type_2").checked = true;' %> <%= calendar_for('from') %> | ||||
<%= l(:label_date_to) %> | ||||
<%= text_field_tag 'to', @to, :size => 10, :onfocus => '$("period_type_2").checked = true;' %> <%= calendar_for('to') %> | ||||
|
r1162 | <%= submit_tag l(:button_apply), :name => nil, :onclick => '$("period_type_2").checked = true;' %> | ||
|
r1159 | </p> | ||
</fieldset> | ||||
|
r365 | <% end %> | ||
|
r1159 | <div class="total-hours"> | ||
<p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p> | ||||
</div> | ||||
<% unless @entries.empty? %> | ||||
<%= render :partial => 'list', :locals => { :entries => @entries }%> | ||||
<p class="pagination"><%= pagination_links_full @entry_pages, @entry_count %></p> | ||||
|
r1171 | |||
<p class="other-formats"> | ||||
<%= l(:label_export_to) %> | ||||
<span><%= link_to 'CSV', params.merge(:format => 'csv'), :class => 'csv' %></span> | ||||
</p> | ||||
|
r1159 | <% end %> | ||