zeus.ugent.be/content/about/verslagen.erb

16 lines
490 B
Text
Raw Normal View History

2018-03-29 19:44:49 +02:00
---
narrow_page: true
---
<%= render '/partials/_about_sub_navbar.*', selected: 'verslagen' %>
2019-06-07 14:37:17 +02:00
<h1 class="title is-1 has-text-centered">Reports</h1>
2018-03-29 19:44:49 +02:00
2016-11-01 19:57:09 +01:00
<div class="content">
2018-02-25 20:29:35 +01:00
<% reports.group_by {|r| r[:academic_year]}.each do |year, y_reports| %>
2019-06-07 14:54:23 +02:00
<h2><%= academic_year_string(year) %></h2>
2018-02-25 20:29:35 +01:00
<% y_reports.each do |report| %>
2018-10-14 17:44:01 +02:00
<a href="<%= report.reps[:pdf]&.path || report.identifier %>">Report <%= report[:date].strftime('%d %B %Y') %></a><br>
2018-02-25 20:29:35 +01:00
<% end %>
<% end %>
2016-11-01 19:57:09 +01:00
</div>