Sha256: b32b5c321acec294637db997ea16de5294d4f66f8d6cc09b5f555a9afde666a6

Contents?: true

Size: 1.09 KB

Versions: 45

Compression:

Stored size: 1.09 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_posts
    #recent_topics
      %table.table
        %caption= t('.recent_topics')
        %thead
          %tr
            %th= t('.topic_name')
            %th= t('.last_message_from')
            %th= t('.date')
        %tbody
          -@recent_posts.each do |post|
            %tr
              %td= link_to post.topic_name, forum_topic_path(post.forum, post.topic_id)
              %td= post.user.login
              %td= forum_time(post.updated_at)

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

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
my_forum-0.0.2.4 app/views/my_forum/welcome/index.haml
my_forum-0.0.2.3 app/views/my_forum/welcome/index.haml
my_forum-0.0.2.2 app/views/my_forum/welcome/index.haml
my_forum-0.0.2.1 app/views/my_forum/welcome/index.haml
my_forum-0.0.2 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta60 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta59 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta58 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta57 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta56 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta55 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta54 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta53 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta52 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta51 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta50 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta49 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta48 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta47 app/views/my_forum/welcome/index.haml
my_forum-0.0.1.beta46 app/views/my_forum/welcome/index.haml