tidy up block display a little more

This commit is contained in:
Ross
2023-06-12 11:20:31 +01:00
parent 4eb421bc33
commit 56cc23a8f2
4 changed files with 26 additions and 15 deletions
@@ -13,13 +13,16 @@
{% for series in question.series.all %}
<span class="series-block">
<span>
Series {{ forloop.counter }}:
<span class="series-block-series-number">Series {{ forloop.counter }}:</span>
<a href="{% url 'longs:long_series_detail' pk=series.pk %}">
{{series.get_block}}
</a>
<br>
<span class="series-block-popup-link">
<a href="#"
onclick="return window.create_popup_window('/longs/series/{{series.pk}}', 'Series')">Popup</a>
</span>
</span>
</span>
{% endfor %}