annotate app/views/issue_relations/_form.rhtml @ 307:c7d3b58bd01c
feature_117
Produce a single en.yml which contains British texts but describes itself as just English.
The difference between en and en-GB is minimal for this application, apart from date formats, and the pain in maintaining both is significant. See #117 and #58.
author |
Chris Cannam |
date |
Mon, 28 Mar 2011 17:41:07 +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();" %>
|