DVGM/app/views/grades/index_admin.html.erb

36 lines
980 B
Plaintext
Raw Normal View History

<table class="w3-table w3-striped w3-bordered">
2017-10-22 18:56:44 +00:00
<tr>
<th>Lecturer</th>
<th>Lecture</th>
<th>Student</th>
<th>Grade</th>
2019-02-21 21:54:26 +00:00
<th>Submission</th>
2017-10-22 18:56:44 +00:00
<th>Comment</th>
<th>Action</th>
2017-10-22 18:56:44 +00:00
</tr>
<% @grades.each do |grade| %>
<tr>
<td><%= grade.lecture.lecturer.login %></td>
<td><%= grade.lecture.name %></td>
<td><%= grade.student.login %></td>
<td><%= grade.grade %></td>
<td>
2019-02-21 21:54:26 +00:00
<% if grade.submission.attached? %>
<%= link_to grade.submission.filename.to_s, rails_blob_url(grade.submission, disposition: "attachment") %>
<% end %>
</td>
<td>
2017-10-22 18:56:44 +00:00
<% if grade.comment %>
<%= grade.comment.html_safe %>
<% end %>
</td>
<td><%= link_to 'Edit', edit_grade_path(grade), :class => "w3-button w3-light-blue" %></td>
2017-10-22 18:56:44 +00:00
</tr>
<% end %>
</table>
<div class="w3-center w3-margin">
<%= link_to 'New Grade', new_grade_path, :class => "w3-button w3-light-blue" %>
</div>