Initial commit of foodsoft 2
This commit is contained in:
commit
5b9a7e05df
657 changed files with 70444 additions and 0 deletions
14
app/views/shared/_comments.haml
Normal file
14
app/views/shared/_comments.haml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
- unless @comments.empty?
|
||||
- @comments.each do |comment|
|
||||
.comment[comment]
|
||||
%h3
|
||||
= "#{comment.user.find_ordergroup.name} :" if comment.user.find_ordergroup
|
||||
=h comment.title
|
||||
= simple_format(comment.comment)
|
||||
.timestamp
|
||||
Erstellt am
|
||||
= format_time(comment.created_at)
|
||||
von
|
||||
=h comment.user.nick
|
||||
- else
|
||||
es gibt derzeit keine Kommentare.
|
||||
Loading…
Add table
Add a link
Reference in a new issue