18 lines
748 B
Plaintext
18 lines
748 B
Plaintext
<script type="text/javascript">
|
|
function submitContestNews()
|
|
{
|
|
if(regexTitle() && regexDescription())
|
|
{
|
|
$("#contestnotifications-form").submit();
|
|
}
|
|
}
|
|
</script>
|
|
<%= labelled_form_for @contestnotification,
|
|
:url => contest_contestnotifications_path(@contest),
|
|
:html => { :id => 'contestnotifications-form', :multipart => true } do |f| %>
|
|
<%= render :partial => 'contestnotifications/form', :locals => { :f => f } %>
|
|
<input type="button" onclick="submitContestNews();" class="enterprise" value="<%= l(:button_create)%>"/>
|
|
<%= link_to l(:button_cancel), contest_contestnotifications_path(@contest.id) %>
|
|
<% end %>
|
|
<div id="preview" class="wiki"></div>
|