2014-10-23 10:57:23 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
function submitContestNews()
|
|
|
|
{
|
|
|
|
if(regexTitle() && regexDescription())
|
|
|
|
{
|
|
|
|
$("#contestnotifications-form").submit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2014-09-12 16:45:03 +08:00
|
|
|
<%= labelled_form_for @contestnotification,
|
|
|
|
:url => contest_contestnotifications_path(@contest),
|
|
|
|
:html => { :id => 'contestnotifications-form', :multipart => true } do |f| %>
|
2014-06-04 20:29:15 +08:00
|
|
|
<%= render :partial => 'contestnotifications/form', :locals => { :f => f } %>
|
2014-10-23 10:57:23 +08:00
|
|
|
<input type="button" onclick="submitContestNews();" class="enterprise" value="<%= l(:button_create)%>"/>
|
|
|
|
<%= link_to l(:button_cancel), contest_contestnotifications_path(@contest.id) %>
|
2014-06-04 20:29:15 +08:00
|
|
|
<% end %>
|
2014-05-30 20:32:37 +08:00
|
|
|
<div id="preview" class="wiki"></div>
|