otwarchive-symphonyarchive/app/views/chapters/preview.html.erb

48 lines
1.5 KiB
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= ts("Preview") %></h2>
<%= error_messages_for :chapter %>
<!--/descriptions-->
<% if @work.work_skin && !Preference.disable_work_skin?(params[:style]) %>
<% cache("#{@work.work_skin.id}-#{@work.work_skin.updated_at}-work-skin", skip_digest: true) do %>
<%= render "skins/skin_style_block", skin: @work.work_skin %>
<% end %><!-- end cache for work skin -->
<% end %>
<div id="chapters">
<div id="workskin">
<%= render @chapter %>
</div>
</div>
<%= form_for([@work, @chapter]) do |f| %>
<%= render "hidden_fields", form: f %>
<fieldset>
<legend><%= ts("Post Chapter") %></legend>
<p class="notice">
<%= t(".post_notice_html",
content_policy_link: link_to(t(".content_policy"), content_path),
tos_faq_link: link_to(t(".tos_faq"), tos_faq_path(anchor: "content_faq"))) %>
</p>
<ul class="actions">
<% if @chapter.posted? %>
<li><%= submit_tag ts("Update"), name: "update_button" %></li>
<% else %>
<li>
<%= submit_tag ts("Post"),
name: "post_button",
data: { disable_with: ts("Please wait...") } %>
</li>
<li>
<%= submit_tag ts("Save As Draft"), name: "save_button" %>
</li>
<% end %>
<li><%= submit_tag ts("Edit"), name: "edit_button" %></li>
<li><%= submit_tag ts("Cancel"), name: "cancel_button" %></li>
</ul>
</fieldset>
<% end %>