socialforge/app/views/boards/_project_new_topic.html.erb

11 lines
668 B
Plaintext
Raw Normal View History

2015-05-25 15:19:42 +08:00
<%= form_for @message, :url =>{:controller=>'messages',:action => 'new', :board_id => @board.id, :is_board => 'true'},:html => {:nhname=>'form', :multipart => true, :id => 'message-form', :name=>'message-form'} do |f| %>
<%= render :partial => 'form_project', :locals => {:f => f, :topic => @message} %>
<li>
2015-05-26 17:01:25 +08:00
<div class="ml55 fl" nhname="toolbar_container"></div>
2015-05-23 16:02:41 +08:00
<a href="javascript:void(0)" nhname="cancelbtn" class="grey_btn fr ml10"><%= l(:button_cancel) %></a>
2015-05-12 15:15:04 +08:00
2015-05-23 16:02:41 +08:00
<a href="javascript:void(0)" nhname="submitbtn" class="blue_btn fr " style="margin-left: 55px"><%= l(:button_submit)%></a>
<div class="cl"></div>
</li>
<% end %>