Skip to content
Snippets Groups Projects
Commit 4ffb1c6c authored by Julian's avatar Julian
Browse files

Show error if no coursebook exists for this user

parent 1e74f5c4
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,29 @@ ...@@ -27,6 +27,29 @@
</v-card-actions> </v-card-actions>
</v-card> </v-card>
</v-col> </v-col>
{% empty %}
<v-container
class="text-center fill-height"
style="height: calc(100vh - 58px);"
>
<v-row align="center">
<v-col>
<h1 class="text-h3 primary--text">
<v-icon color="error" x-large>mdi-book-off-outline</v-icon>
Whoops, 404
</h1>
<p>The page you were looking for does not exist</p>
<v-btn
color="primary"
outlined
>
Get me out of here!
</v-btn>
</v-col>
</v-row>
</v-container>
{% endfor %} {% endfor %}
</v-row> </v-row>
{% endblock %} {% endblock %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment