To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / timelog / new.html.erb @ 1298:4f746d8966dd

History | View | Annotate | Download (369 Bytes)

1
<h2><%= l(:label_spent_time) %></h2>
2

    
3
<%= labelled_form_for @time_entry, :url => time_entries_path do |f| %>
4
  <%= hidden_field_tag 'project_id', params[:project_id] if params[:project_id] %>
5
  <%= render :partial => 'form', :locals => {:f => f} %>
6
  <%= submit_tag l(:button_create) %>
7
  <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
8
<% end %>