To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 25 / 25447f18997fb5819d5b27f060defe1630ee82df.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (687 Bytes)
| 1 | 1296:038ba2d95de8 | Chris | <%= board_breadcrumb(@message) %> |
|---|---|---|---|
| 2 | |||
| 3 | <h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2> |
||
| 4 | |||
| 5 | <%= form_for @message, {
|
||
| 6 | :as => :message, |
||
| 7 | :url => {:action => 'edit'},
|
||
| 8 | :html => {:multipart => true,
|
||
| 9 | :id => 'message-form', |
||
| 10 | :method => :post} |
||
| 11 | } do |f| %> |
||
| 12 | <%= render :partial => 'form', |
||
| 13 | :locals => {:f => f, :replying => !@message.parent.nil?} %>
|
||
| 14 | <%= submit_tag l(:button_save) %> |
||
| 15 | <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board, :id => @message}, 'message-form') %>
|
||
| 16 | <% end %> |
||
| 17 | <div id="preview" class="wiki"></div> |