diff --git a/aleksis/apps/resint/templates/resint/group/list.html b/aleksis/apps/resint/templates/resint/group/list.html index a0e248f0865c1ff19fae5ad8b32b697b564a2182..33f18e2eedf7ee7042767ef35b5368ae95458d61 100644 --- a/aleksis/apps/resint/templates/resint/group/list.html +++ b/aleksis/apps/resint/templates/resint/group/list.html @@ -29,7 +29,8 @@ <tr> <td>{{ poster_group.name }}</td> <td> - <a href="{% url "poster_show_current" poster_group.slug %}"><code>{{ poster_group.filename }}</code></a> + <a href="{% url "poster_show_current" poster_group.slug %}" target="_blank"> + <code>{{ poster_group.filename }}</code></a> </td> <td>{{ poster_group.publishing_day_name }}</td> <td>{{ poster_group.publishing_time }}</td> diff --git a/aleksis/apps/resint/templates/resint/poster/list.html b/aleksis/apps/resint/templates/resint/poster/list.html index f152f858bee30e47000e924a864a1cb84555fa6a..685088133654f16a921996f0b45afce6be044b20 100644 --- a/aleksis/apps/resint/templates/resint/poster/list.html +++ b/aleksis/apps/resint/templates/resint/poster/list.html @@ -15,7 +15,7 @@ {% if current_poster %} <p class="margin-bottom"> <i class="material-icons left">picture_as_pdf</i> - <a href="{{ current_poster.pdf.url }}"> + <a href="{{ current_poster.pdf.url }}" target="_blank"> {% blocktrans with week=current_poster.week year=current_poster.year %} Week {{ week }}/{{ year }} {% endblocktrans %} @@ -34,7 +34,7 @@ {% endwith %} </div> <div class="card-action"> - <a href="{% url "poster_show_current" group.slug %}"> + <a href="{% url "poster_show_current" group.slug %}" target="_blank"> {% trans "Show current PDF" %} </a> </div>