diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-22 18:20:00 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-10-22 18:20:00 +0000 |
commit | dc26fd215b83a665f9ce2659a406fcc1f1926044 (patch) | |
tree | 76b0f3220bad14ab40a651c691ed2442394255d9 /app | |
parent | d9652183f672a4f23fabb0b8921cb85773b25a54 (diff) | |
download | redmine-dc26fd215b83a665f9ce2659a406fcc1f1926044.tar.gz redmine-dc26fd215b83a665f9ce2659a406fcc1f1926044.zip |
Add ids to some sections of the issue form
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4275 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/_form.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_form.rhtml b/app/views/issues/_form.rhtml index 136e1decc..7e9a29ee5 100644 --- a/app/views/issues/_form.rhtml +++ b/app/views/issues/_form.rhtml @@ -26,11 +26,11 @@ </div> <% if @issue.new_record? %> -<p><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p> +<p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p> <% end %> <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%> -<p><label><%= l(:label_issue_watchers) %></label> +<p id="watchers_form"><label><%= l(:label_issue_watchers) %></label> <% @issue.project.users.sort.each do |user| -%> <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watched_by?(user) %> <%=h user %></label> <% end -%> |