Files
codeocean/app/views/request_for_comments/index.html.slim
2016-05-06 17:24:38 +02:00

22 lines
905 B
Plaintext

h1 = RequestForComment.model_name.human(count: 2)
.table-responsive
table.table.sortable
thead
tr
th = t('activerecord.attributes.request_for_comments.exercise')
th = t('activerecord.attributes.request_for_comments.question')
th = t('activerecord.attributes.request_for_comments.username')
th = t('activerecord.attributes.request_for_comments.requested_at')
tbody
- @request_for_comments.each do |request_for_comment|
tr data-id=request_for_comment.id
td = link_to(request_for_comment.exercise.title, request_for_comment)
- if request_for_comment.has_attribute?(:question)
td = request_for_comment.question
- else
td = '-'
td = request_for_comment.user.displayname
td = request_for_comment.requested_at
= render('shared/pagination', collection: @request_for_comments)