Sha256: 6989ef9836cccb750dbd80c729bac3c4167b67dbafa7ece7f23955c969fe3f76
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
<% breadcrumb.add @model.title, edit_backend_article_path(@model) %> <% breadcrumb.add t('b.edit') %> <%= render 'backend/breadcrumbs' %> <%= render 'tabs', model: @model, active: params[:translation_locale].to_sym %> <%= render 'backend/general_form_error', object: @translation %> <%= simple_form_for([:backend, @translation], url: edit_translation_backend_article_path, html: { class: 'no-focus' }) do |f| %> <%= trigger_dirty_inputs_warning %> <div class="row"> <div class="col-md-12"> <!-- Content --> <div class="card"> <div class="card-header"> <%= t 'b.content' %> </div> <div class="card-block"> <%= f.input :title %> <% summary_type = Udongo.config.articles.editor_for_summary? ? :ckeditor : :text %> <%= f.input :summary, as: summary_type %> </div> </div> <!-- Flexible Content --> <%= render 'backend/content/rows', model: @model, locale: params[:translation_locale] %> <!-- SEO --> <%= render 'backend/seo_form', f: f %> <!-- Tags --> <%= render 'backend/tags', model: @model %> </div> </div> <%= render 'backend/form_actions', cancel_url: backend_articles_path %> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
udongo-5.5.0 | app/views/backend/articles/edit_translation.html.erb |