##// END OF EJS Templates
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
Move the filters buttons inside the filters fieldset on the issue list (closes #614). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1262 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1124:30a7314b861f
r1247:f5b5688e8ad8
Show More
new.rhtml
19 lines | 852 B | text/html+ruby | RhtmlLexer
<h2><%=l(:label_issue_new)%></h2>
<% labelled_tabular_form_for :issue, @issue,
:html => {:multipart => true, :id => 'issue-form'} do |f| %>
<%= error_messages_for 'issue' %>
<div class="box">
<%= render :partial => 'issues/form', :locals => {:f => f} %>
</div>
<%= submit_tag l(:button_create) %>
<%= link_to_remote l(:label_preview),
{ :url => { :controller => 'issues', :action => 'preview', :project_id => @project, :id => @issue },
:method => 'post',
:update => 'preview',
:with => "Form.serialize('issue-form')",
:complete => "Element.scrollTo('preview')"
}, :accesskey => accesskey(:preview) %>
<% end %>
<div id="preview" class="wiki"></div>