##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1237:aec989707edc
r1770:8f3a04ce6906
Show More
_form.rhtml
12 lines | 477 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'tracker' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:tracker]-->
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= f.text_field :name, :required => true %></p>
Jean-Philippe Lang
added roadmap view...
r225 <p><%= f.check_box :is_in_chlog %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= f.check_box :is_in_roadmap %></p>
Jean-Philippe Lang
Workflow copy:...
r1237 <% if @tracker.new_record? && @trackers.any? %>
<p><label><%= l(:label_copy_workflow_from) %></label>
<%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@trackers, :id, :name)) %></p>
Jean-Philippe Lang
Added the ability to copy an existing workflow when creating a new tracker....
r396 <% end %>
Jean-Philippe Lang
Initial commit...
r2 <!--[eoform:tracker]-->
Jean-Philippe Lang
tables and forms redesign,...
r19 </div>