Sha256: f40796ec83dc22d2123c3c7ca5f3f101946b0d54e5bf4d0b12f4e60ed4603c1c

Contents?: true

Size: 1.52 KB

Versions: 16

Compression:

Stored size: 1.52 KB

Contents

- include_stylesheet('admin/forum')
= render_region :top 

#posts_table.outset
  %table#posts.index{:cellspacing=>"0", :border=>"0", :cellpadding=>"0"}
    %thead
      %tr
        - render_region :thead do |thead|
          - thead.body_header do
            %th.body
              = t('body')
          - thead.author_header do
            %th.author 
              = t('author')
          - thead.date_header do
            %th.date 
          - thead.topic_header do
            %th.topic
              = t('topic')
          - thead.modify_header do
            %th.action
    %tbody
      - @posts.each do |post|
        %tr
          - render_region :tbody do |tbody|
            - tbody.body_cell do
              %td.post_body
                = link_to truncate(post.body, :length => 64), edit_admin_post_url(post)

            - tbody.author_cell do
              %td.post_author
                = link_to post.reader.name, admin_reader_url(post.reader)
                    
            - tbody.date_cell do
              %td.post_date
                = friendly_date(post.created_at)

            - tbody.topic_cell do
              %td.post_topic
                = link_to post.topic.name, forum_topic_url(post.topic.forum, post.topic), :class => 'external'

            - tbody.modify_cell do
              %td.actions
                = link_to image('minus') + ' ' + t('remove'), remove_admin_post_url(:id => post) , :class => 'action'

- render_region :bottom do |bottom|
  - bottom.buttons do
    #actions
      = pagination_for @posts

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
radiant-forum-extension-2.1.6 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.1.4 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.1.3 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.1.2 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.1.1 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.9 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.8 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.7 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.6 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.5 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.4 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.3 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.2 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.1 app/views/admin/posts/index.html.haml
radiant-forum-extension-2.0.0 app/views/admin/posts/index.html.haml
radiant-forum-extension-1.2.1 app/views/admin/posts/index.html.haml