Sha256: 1270fb1e6f2b90fc59f6623f3eb0dac4106a45d4fbb3e97b6e01c02424ae8be7
Contents?: true
Size: 1.24 KB
Versions: 12
Compression:
Stored size: 1.24 KB
Contents
<% unless lang.recently_added_forum_messages.empty? %> <div style="padding-top:10px; font-size:14px; border-bottom:1px solid #ccc; margin-bottom:5px;"> <div style="float:right; font-size:12px;"> <%=link_to(tra('view all', 'Link to view all forum topics'), :controller => "/tr8n/forum", :action => :index, :locale => lang.locale)%> </div> <%=tr8n_toggler_tag("forum_content_#{lang.id}", "", false)%> <%=tra("Recent Discussions", 'Dashboard section header') %> <span style="color:#ccc; font-size:12px;">(last 5)</span> </div> <div id="forum_content_<%=lang.id%>" style="display:none"> <div class="section"> <table style="width:100%;"> <% lang.recently_added_forum_messages.each do |message| %> <% style = (message == lang.recently_added_forum_messages.last ? "" : "border-bottom:1px dotted #ccc;" ) %> <tr style="<%=style%>"> <%= render :partial => "/tr8n/forum/message", :locals => {:message => message} %> <td style="text-align:right; padding-right:5px;"> <%=link_to(tra("view", 'Link to view a forum message'), :controller => "/tr8n/forum", :action => :topic, :locale => lang.locale, :topic_id => message.topic.id)%> </td> </tr> <% end %> </table> </div> </div> <% end %>
Version data entries
12 entries across 12 versions & 1 rubygems