Sha256: ce8f0138d130291b0d7ca4a14e932277a3e37f7109118d868aa3523b95e96a52

Contents?: true

Size: 1.1 KB

Versions: 14

Compression:

Stored size: 1.1 KB

Contents

- include_stylesheet 'admin/tags' 

- render_region :main do |main|
  - main.show_header do
    %h1
      Tag:
      = link_to @tag.title, edit_admin_tag_url(@tag)
    - if @tag.description
      %p
        = @tag.description

  - main.show_pages do
    - page_taggings = @tag.taggings.of_a :page
    - if page_taggings.any?
      %h2
        Tagged pages
      %table.index
        - page_taggings.each do |tagging|
          - page = tagging.tagged
          - dom_id = "tagging_#{tagging.id}"
          %tr.page.level-1{:id => dom_id}
            %td{:style => 'width: 48px'}
              = link_to image('page', :class => "icon"), page.url
            %td.name
              = link_to %{ <span class="title">#{ h(page.title) }</span>}, page.url
            %td.actions
              = link_to_remote image('minus') + ' detach', |
                :html => { :class => "action", :title => "Detach tag from page" }, |
                :url => admin_tagging_url(tagging), :method => :delete, |
                :after => "Effect.Fade('#{dom_id}', { duration: 0.5 })", |
                :complete => "Element.remove('#{dom_id}');"

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
radiant-taggable-extension-2.0.5 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.4 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.3 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.2 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.1 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.0 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.0.rc2 app/views/admin/tags/show.html.haml
radiant-taggable-extension-2.0.0.rc1 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.5 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.4 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.3 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.2 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.1 app/views/admin/tags/show.html.haml
radiant-taggable-extension-1.2.0 app/views/admin/tags/show.html.haml