annotate app/views/issue_relations/.svn/text-base/_form.rhtml.svn-base @ 330:f1a12c3b4587 cannam-pre-20110113-merge

We don't actually want text formatting in our short summary, but we don't want wiki metacharacters either. So apply wiki formatting and then strip out the tags in a very naive fashion.
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 29 Mar 2011 18:03:55 +0100
parents 513646585e45
children af80e5618e9b
rev   line source
Chris@0 1 <%= error_messages_for 'relation' %>
Chris@0 2
Chris@0 3 <p><%= f.select :relation_type, collection_for_relation_type_select, {}, :onchange => "setPredecessorFieldsVisibility();" %>
Chris@0 4 <%= l(:label_issue) %> #<%= f.text_field :issue_to_id, :size => 6 %>
Chris@0 5 <span id="predecessor_fields" style="display:none;">
Chris@0 6 <%= l(:field_delay) %>: <%= f.text_field :delay, :size => 3 %> <%= l(:label_day_plural) %>
Chris@0 7 </span>
Chris@0 8 <%= submit_tag l(:button_add) %>
Chris@0 9 <%= toggle_link l(:button_cancel), 'new-relation-form'%>
Chris@0 10 </p>
Chris@0 11
Chris@0 12 <%= javascript_tag "setPredecessorFieldsVisibility();" %>