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

8 lines
338 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 %>' >
2013-12-25 15:57:19 +08:00
<% fetch_user_leaveWord_reply(journal).each do |reply|%>
2013-12-28 12:16:08 +08:00
<%= render :partial => "words/journal_reply_items", :locals => {:reply => reply, :journal => journal, :m_reply_id => reply} %>
2013-12-25 15:37:03 +08:00
<% end %>
</ul>