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 / news / edit.html.erb @ 1591:63650ae64bf2
History | View | Annotate | Download (447 Bytes)
| 1 |
<h2><%=l(:label_news)%></h2> |
|---|---|
| 2 |
|
| 3 |
<%= labelled_form_for @news, :html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
|
| 4 |
<%= render :partial => 'form', :locals => { :f => f } %>
|
| 5 |
<%= submit_tag l(:button_save) %>
|
| 6 |
<%= preview_link preview_news_path(:project_id => @project, :id => @news), 'news-form' %>
|
| 7 |
<% end %>
|
| 8 |
<div id="preview" class="wiki"></div> |
| 9 |
|
| 10 |
<% content_for :header_tags do %>
|
| 11 |
<%= stylesheet_link_tag 'scm' %>
|
| 12 |
<% end %>
|