mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-29 05:18:49 +01:00
Still lacks error checking for circular dependencies and other validation. Also, javascript for displaying the new item is broken. Conflicts: app/views/layouts/standard.html.erb
74 lines
3.6 KiB
Text
74 lines
3.6 KiB
Text
<%
|
|
@todo = nil
|
|
@initial_context_name = @context.name unless @context.nil?
|
|
@initial_context_name ||= @project.default_context.name unless @project.nil? || @project.default_context.nil?
|
|
@initial_context_name ||= current_user.contexts.first.name unless current_user.contexts.first.nil?
|
|
@initial_project_name = @project.name unless @project.nil?
|
|
-%>
|
|
<div id="todo_new_action_container">
|
|
|
|
<div id="toggle_action_new" class="hide_form">
|
|
<a title="Hide new action form" accesskey="n" href="#">« Hide form</a>
|
|
</div>
|
|
|
|
<div id="todo_new_action" style="display:block">
|
|
<% form_remote_tag(
|
|
:url => todos_path, :method => :post,
|
|
:html=> { :id=>'todo-form-new-action', :name=>'todo', :class => 'inline-form' },
|
|
:before => "$('#todo_new_action_submit').block({message:null})",
|
|
:complete => "$('#todo_new_action_submit').unblock()",
|
|
:condition => "askIfNewContextProvided()") do -%>
|
|
|
|
<div id="status"><%= error_messages_for("item", :object_name => 'action') %></div>
|
|
|
|
<label for="todo_description">Description</label>
|
|
<%= text_field( "todo", "description", "size" => 30, "tabindex" => 1, "maxlength" => 100, "autocomplete" => "off") %>
|
|
|
|
<label for="todo_notes">Notes</label>
|
|
<%= text_area( "todo", "notes", "cols" => 29, "rows" => 6, "tabindex" => 2) %>
|
|
|
|
<input id="default_project_name_id" name="default_project_name" type="hidden" value="<%=@initial_project_name-%>" />
|
|
<label for="todo_project_name">Project</label>
|
|
<input id="todo_project_name" name="project_name" autocomplete="off" tabindex="3" size="30" type="text" value="<%= @initial_project_name %>" />
|
|
<div class="page_name_auto_complete" id="project_list" style="display:none"></div>
|
|
|
|
<input id="default_context_name_id" name="default_context_name" type="hidden" value="<%=@initial_context_name-%>" />
|
|
<label for="todo_context_name">Context</label>
|
|
<input id="todo_context_name" name="context_name" autocomplete="off" tabindex="4" size="30" type="text" value="<%= @initial_context_name %>" />
|
|
<div class="page_name_auto_complete" id="context_list" style="display:none"></div>
|
|
|
|
<label for="tag_list">Tags (separate with commas)</label>
|
|
<%= text_field_tag "tag_list", @default_tags, :size => 30, :tabindex => 5 %>
|
|
<%= content_tag("div", "", :id => "tag_list_auto_complete", :class => "auto_complete") %>
|
|
|
|
<div class="due_input">
|
|
<label for="todo_due">Due</label>
|
|
<%= text_field("todo", "due", "size" => 12, "class" => "Date", "tabindex" => 6, "autocomplete" => "off") %>
|
|
</div>
|
|
|
|
<div class="show_from_input">
|
|
<label for="todo_show_from">Show from</label>
|
|
<%= text_field("todo", "show_from", "size" => 12, "class" => "Date", "tabindex" => 7, "autocomplete" => "off") %>
|
|
</div>
|
|
|
|
<label for="predecessor_list">Depends on</label>
|
|
<%= text_field_tag "predecessor_list", nil, :size => 30, :tabindex => 8 %>
|
|
<%= content_tag("div", "", :id => "predecessor_list_auto_complete", :class => "auto_complete") %>
|
|
<%= auto_complete_field 'predecessor_list', {
|
|
:url => {:controller => 'todos', :action => 'auto_complete_for_predecessor', :id => nil},
|
|
:tokens => [',']
|
|
} %>
|
|
|
|
<%= source_view_tag( @source_view ) %>
|
|
<%= hidden_field_tag :_tag_name, @tag_name.underscore.gsub(/\s+/,'_') if source_view_is :tag %>
|
|
|
|
<div class="submit_box">
|
|
<div class="widgets">
|
|
<button type="submit" class="positive" id="todo_new_action_submit" tabindex="8">
|
|
<%= image_tag("accept.png", :alt => "") %>Add action
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<% end -%>
|
|
</div>
|
|
</div>
|