To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / messages / edit.html.erb @ 1531:ae8145b28b2b
History | View | Annotate | Download (687 Bytes)
| 1 |
<%= 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> |