socialforge/app/views/words/_journal_reply.html.erb

8 lines
327 B
Plaintext
Raw Normal View History

2013-12-25 21:00:40 +08:00
<% id = "journal_reply_ul_" + journal.id.to_s%>
2013-12-26 19:28:18 +08:00
<ul class="messages-for-user-reply" id = '<%= id %>' >
2014-10-28 17:22:35 +08:00
<% fetch_user_leaveWord_reply(journal).each do |reply|%>
<%= render :partial => "words/journal_reply_items", :locals => {:reply => reply, :journal => journal, :m_reply_id => reply} %>
<% end %>
2013-12-25 15:37:03 +08:00
</ul>