Sha256: d1d71e99685af7f4a17678a0f031f4e41bd716d16eb0ba2eed5b3ef8ff2ab432

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

.categories-widget
  %span.btn.btn-sm
    %strong= t('.label')

  %span.categories.read

    %button.toggle-cat-edit.btn.btn-secondary.btn-sm
      = t(".edit")

    .category
      - active_class = params[:categories].blank?? "btn-dark" : "btn-light"
      = link_to t('.all'), {categories: nil}, class: "btn btn-sm #{active_class}"
    - @site.categories.of_type(type).each do |category|
      = render "comfy/admin/cms/categories/show", category: category, read: true

  %span.categories.editable
    - @site.categories.of_type(type).each do |category|
      = render "comfy/admin/cms/categories/show", category: category

    - url = comfy_admin_cms_site_categories_path(@site)
    = form_for :category, url: url, remote: true, html: {id: "new_category"} do |form|
      = form.hidden_field :categorized_type, value: type
      .input-group
        = form.text_field :label, placeholder: t('.add_placeholder'), class: 'form-control form-control-sm'
        .input-group-btn
          %button#cat-add-button.btn.btn-primary.btn-sm
            = t(".add")
          %button.toggle-cat-edit.btn.btn-light.btn-sm
            = t(".done")

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.3 app/views/comfy/admin/cms/categories/_index.html.haml
comfortable_mexican_sofa-2.0.2 app/views/comfy/admin/cms/categories/_index.html.haml
comfortable_mexican_sofa-2.0.1 app/views/comfy/admin/cms/categories/_index.html.haml
comfortable_mexican_sofa-2.0.0 app/views/comfy/admin/cms/categories/_index.html.haml