Skip to content

Commit 63bbf2f

Browse files
committed
Adds text area field
1 parent 6bd4a9d commit 63bbf2f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/views/hooks/_print_issue_form.html.erb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<h3><%= l :label_gtt_print_title %></h3>
33
<%= form_tag gtt_print_jobs_path, remote: true do |f| %>
44
<%= hidden_field_tag :issue_id, @issue.id %>
5+
<%= text_area_tag :gtt_print_custom_text %><br>
56
<%= select_tag :gtt_print_layout, options_from_collection_for_select(layouts, :to_s, :to_s) %>
67
<button type="submit"><%= l :button_gtt_print_submit %></button>
78
<% end %>
@@ -16,6 +17,7 @@
1617
<h3><%= l :label_gtt_print_title %></h3>
1718
<%= form_tag gtt_print_jobs_path, remote: true do |f| %>
1819
<%= hidden_field_tag :issue_ids, @issues.map(&:id).join(',') %>
20+
<%= text_area_tag :gtt_print_custom_text %><br>
1921
<%= select_tag :gtt_print_layout, options_from_collection_for_select(layouts, :to_s, :to_s) %>
2022
<button type="submit"><%= l :button_gtt_print_submit %></button>
2123
<% end %>

0 commit comments

Comments
 (0)