Sha256: 25874e7f0abb039eb85b1aa38ab3a4c1bb676eafba85da83d3ffa76f07aa5bfb

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

.container-fluid
  - @forum_categories.each do |category|
    .row.category-header
      .col-md-12= category.name

    .row.category-forums
      .col-md-12.category-forums-container
        .box
          - category.forums.each do |forum|
            .row.forum-row
              .col-md-1.col-sm-1= forum_status_img(forum)
              .col-md-6.col-sm-6= forum_name(forum)
              .col-md-2.col-sm-2.forum-info= forum_stat(forum)
              .col-md-3.col-sm-3.forum-last-message-info= forum_last_message_info(forum)

  - if @recent_topics
    #recent_topics
      %table.table
        %caption= t('.recent_topics')
        %thead
          %tr
            %th= t('.topic_name')
            %th= t('.last_message_from')
            %th= t('.date')
        %tbody
          -@recent_topics.each do |topic|
            %tr
              %td= link_to topic.name, forum_topic_path(topic.forum, topic)
              %td= topic.posts.last.user.login
              %td= forum_time(topic.updated_at)

  #online_users.well
    = t('.users_online')
    = online_users
    %br
    = t('.today_online')
    = today_was_users

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
my_forum-0.0.1.beta20 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta19 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta18 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta17 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta16 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta15 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta14 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta13 app/views/my_forum/welcome/index.haml