otwarchive-symphonyarchive/app/views/skins/new.html.erb

22 lines
687 B
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page names, messages and instructions-->
<h2 class="heading"><%= ts('Create New Skin') %></h2>
<%= error_messages_for :skin %>
<!--/descriptions-->
<!--subnav-->
<%= render 'skin_navigation' %>
<!--/subnav-->
<!--main content-->
<p class="notes">
<%= ts('This form allows you to create a new site or work skin. Select "Work Skin" or "Site Skin" in the Type option list to choose which type of skin you are creating.') %>
<%= link_to_help 'skins-basics' %>
</p>
<h3 class="landmark heading"><%= ts('Create New Skin') %></h3>
<%= form_for @skin, html: { multipart: true, class: "skin verbose post" } do |f| %>
<%= render 'form', f: f %>
<% end %>
<!--/content-->