Sha256: 2085908ba1232a4c2b9efe7699f1c3887e101fd36d9e166ebd45310b4476c3fe

Contents?: true

Size: 228 Bytes

Versions: 1

Compression:

Stored size: 228 Bytes

Contents

module MyForum
  module TopicsHelper

    def topic_last_post_info(topic)
      html  = content_tag(:div, topic.last_post_time)
      html += content_tag(:div, topic.last_post_user_login)
      html.html_safe
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
my_forum-0.0.1.beta1 app/helpers/my_forum/topics_helper.rb