socialforge/app/views/test/index.html.erb

17 lines
245 B
Plaintext
Raw Normal View History

2013-12-25 09:17:15 +08:00
<h3>test</h3>
2014-04-22 09:54:56 +08:00
<% memos=Memo.where('author_id = 5 AND parent_id IS NOT NULL') %>
<% memos.each do |m|%>
<tr>
2014-04-22 09:54:56 +08:00
<% if Memo.find(m.parent_id).author_id != 5 %>
<td><%=m.subject%></td>
<% end %>
</tr>>
<% end %>
2014-04-22 09:54:56 +08:00
2014-02-24 15:00:03 +08:00
<hr/>
<hr/>
2013-08-01 10:33:49 +08:00