mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-16 01:41:23 +00:00
704a6b4e9b
Changed login field text Changed database configuration connection pool size to be configured via dotenv Use a single BBcode parser library Added better translations coverage Code formatting Increases maximum article text limit Added database cleaner with the deletion strategy during testing
77 lines
2 KiB
Text
77 lines
2 KiB
Text
<% if @article.text_coding == Article::CODING_HTML %>
|
|
<%= render :partial => "javascripts/mce_full" %>
|
|
<% end %>
|
|
|
|
<div class="box wide">
|
|
<h1>Editing article</h1>
|
|
|
|
<%= form_for(@article) do |f| %>
|
|
<% if @article.errors.any? %>
|
|
<div id="error_explanation">
|
|
<h2><%= pluralize(@article.errors.count, t(:error)) %> <%= t(:prohibited) %></h2>
|
|
|
|
<ul>
|
|
<% @article.errors.full_messages.each do |msg| %>
|
|
<li><%= msg %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= f.label :title %><br />
|
|
<%= f.text_field :title %>
|
|
</p>
|
|
<% if cuser.admin? %>
|
|
<p>
|
|
<%= f.label :status %><br />
|
|
<%= f.select :status, @article.statuses.invert %>
|
|
</p>
|
|
<% end %>
|
|
<p>
|
|
<%= f.label :text_coding %><br />
|
|
<%= f.select :text_coding, @article.codings.invert %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :category_id %><br />
|
|
<%= f.select :category_id, Category.ordered.collect{|c| ["#{c.domains[c.domain]} - #{c}", c.id]} %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :text %><br />
|
|
<%= f.text_area :text, :rows => 30, :cols => 80 %>
|
|
</p>
|
|
<p>
|
|
<%= f.submit %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% unless @article.new_record? %>
|
|
<div class="box wide">
|
|
<h3>Files</h3>
|
|
|
|
<%= render :partial => "data_files/list", :locals => {:files => @article.files} %>
|
|
|
|
<% if @file && @file.can_create?(cuser) %>
|
|
<h3>New file</h3>
|
|
|
|
<div class="wide box">
|
|
<%= form_for @file, :html => { :multipart => true } do |f| %>
|
|
<div id="error_explanation">
|
|
<ul>
|
|
<% @file.errors.full_messages.each do |msg| %>
|
|
<li><%= msg %></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
<%= f.hidden_field :directory_id %>
|
|
<%= f.hidden_field :article_id %>
|
|
|
|
<p>
|
|
<%= f.file_field :name %> <%= f.submit 'Create' %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|