28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - All instructions{% endblock %}
|
|
|
|
{% block main %}
|
|
{% if upload %}
|
|
{% include 'instructions/upload.html' %}
|
|
{% elif download %}
|
|
{% include 'instructions/download.html' %}
|
|
{% elif rename %}
|
|
{% include 'instructions/rename.html' %}
|
|
{% elif delete %}
|
|
{% include 'instructions/delete.html' %}
|
|
{% else %}
|
|
<div class="container-fluid px-0">
|
|
{% if g.login.is_authenticated() %}
|
|
<p class="border-bottom pb-2 px-2 text-center">
|
|
<a class="btn btn-primary" href="{{ url_for('instructions.upload') }}"><i class="ri-upload-line"></i> Upload an instructions file</a>
|
|
<a class="btn btn-primary" href="{{ url_for('instructions.download') }}"><i class="ri-download-line"></i> Download instructions from Rebrickable</a>
|
|
<a href="{{ url_for('admin.admin', open_instructions=true) }}" class="btn btn-light border" role="button"><i class="ri-refresh-line"></i> Refresh the instructions cache</a>
|
|
</p>
|
|
{% endif %}
|
|
{% with all=true %}
|
|
{% include 'instructions/table.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %} |