15 lines
533 B
HTML
15 lines
533 B
HTML
|
|
<section
|
||
|
|
id="id_applet_billboard_most_recent"
|
||
|
|
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||
|
|
>
|
||
|
|
<h2>Most Recent</h2>
|
||
|
|
{% if recent_room %}
|
||
|
|
<a href="{% url 'billboard:scroll' recent_room.id %}" class="most-recent-room-link">{{ recent_room.name }}</a>
|
||
|
|
{% with events=recent_events %}
|
||
|
|
{% include "core/_partials/_scroll.html" %}
|
||
|
|
{% endwith %}
|
||
|
|
{% else %}
|
||
|
|
<p><small>No recent activity.</small></p>
|
||
|
|
{% endif %}
|
||
|
|
</section>
|