6 lines
215 B
HTML
6 lines
215 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Error: No cards foud</h1>
|
||
|
<p>No cards were found in your collection. Consider <a href="{{ url_for('upload.index') }}">uploading</a> some.</p>
|
||
|
{% endblock %}
|