24 lines
606 B
HTML
24 lines
606 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - Delete a set {{ item.fields.set_num }} ({{ item.fields.u_id }}){% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
{% with solo=true, delete=true %}
|
|
{% include 'set/card.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
baguetteBox.run('[data-lightbox]');
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="{{ url_for('static', filename='scripts/set.js') }}"></script>
|
|
{% endblock %} |