socialforge/app/views/contestnotifications/_form.html.erb

30 lines
920 B
Plaintext
Raw Normal View History

2014-06-04 20:29:15 +08:00
<%= error_messages_for @contestnotifications %>
<div class="add_frame_header" >
2014-06-09 11:30:18 +08:00
<%= l(:bale_news_notice) %>
2014-06-04 20:29:15 +08:00
</div>
<div class="box tabular">
<p>
<%= f.text_field :title,
:required => true,
:size => 60,
:maxlength => 60,
:style => "width:488px;",
:onblur => "regexTitle();"
%>
</p>
<span id="title_span" style="padding-left: 100px;"></span>
<p>
<%= f.text_area :description,
:required => true,
:cols => 60,
:rows => 11,
:class => 'wiki-edit',
:style => "width:490px;",
:onblur => "regexDescription();"
%>
</p>
<span id="description_span" style="padding-left: 100px;"></span>
2014-06-04 20:29:15 +08:00
</div>
<%= wikitoolbar_for 'news_description' %>