Sha256: cfa745c9a07d176135b9b10dbfe3e42a9214fb60b9bf2a1d8ba345ebbd2fb4de

Contents?: true

Size: 1.46 KB

Versions: 16

Compression:

Stored size: 1.46 KB

Contents

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

#topics_table.outset
  %table#topics.index{:cellspacing=>"0", :border=>"0", :cellpadding=>"0"}
    %thead
      %tr
        - render_region :thead do |thead|
          - thead.title_header do
            %th.topic 
              = t('topic')
          - thead.date_header do
            %th.date 
          - thead.author_header do
            %th.author 
              = t('author')
          - thead.body_header do
            %th.body
              = t('body')
          - thead.modify_header do
            %th.action
    %tbody
      - @topics.each do |topic|
        %tr
          - render_region :tbody do |tbody|
            - tbody.title_cell do
              %td.name
                = link_to topic.name, edit_admin_topic_url(:id => topic)

            - tbody.date_cell do
              %td.topic_date
                = friendly_date(topic.created_at)

            - tbody.author_cell do
              %td.topic_author
                = link_to topic.reader.name, admin_reader_url(topic.reader)
                    
            - tbody.body_cell do
              %td.topic_body
                = truncate(topic.first_post.body, :length => 64)

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

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

Version data entries

16 entries across 16 versions & 1 rubygems

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