Sha256: 5f91c9045304e0d10fef217f96b5b56d4517dea043deab717e02e5b58b80fa8f

Contents?: true

Size: 863 Bytes

Versions: 31

Compression:

Stored size: 863 Bytes

Contents

= new_topic_button

= link_to t('.mark_all_as_read'), mark_all_as_read_path

.container-fluid
  .row.forum-header
    .col-md-1
    .col-md-6=t('.subject')
    .col-md-1=t('.author')
    .col-md-1=t('.answers')
    .col-md-1=t('.views')
    .col-md-2=t('.last_message')

  .row.topic-list-container
    .box.topic-list
      - if @forum_topics.blank?
        .row.topic-row
          .col-md-12.col-sm-12.text-center= t('.no-topics')
      - else
        - @forum_topics.each do |topic|
          .row.topic-row
            .col-md-7.col-sm-7= render 'topic_subject', topic: topic, forum: @forum
            .col-md-1.col-sm-1= topic.posts.first.user.login rescue '-'
            .col-md-1.col-sm-1= topic.posts_count
            .col-md-1.col-sm-1= topic.views.to_i
            .col-md-2.col-sm-2.info= topic_last_post_info(topic)

= will_paginate @forum_topics

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
my_forum-0.0.1.beta33 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta32 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta31 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta30 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta29 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta28 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta27 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta26 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta25 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta24 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta23 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta22 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta21 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta20 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta19 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta18 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta17 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta16 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta15 app/views/my_forum/forums/show.haml
my_forum-0.0.1.beta14 app/views/my_forum/forums/show.haml