Skip to content
Snippets Groups Projects
Verified Commit 1077c4b5 authored by Julian's avatar Julian Committed by magicfelix
Browse files

Display back button and updateindicator in one line

parent 78ca040e
No related branches found
No related tags found
1 merge request!284Draft: Redesign entering of lesson documentation
...@@ -9,8 +9,13 @@ ...@@ -9,8 +9,13 @@
<!-- Result --> <!-- Result -->
<div v-else-if="data" class="result apollo"> <div v-else-if="data" class="result apollo">
<update-indicator @manual-update="updateManually()" ref="indicator" :status="status"></update-indicator> <div class="d-flex justify-space-between">
<v-subheader>{{ data.lesson.subject.name }}</v-subheader> <v-btn text color="primary" :href="$root.urls.select_coursebook()">
<v-icon left>mdi-chevron-left</v-icon>
{{ $root.django.gettext("Back") }}
</v-btn>
<update-indicator @manual-update="updateManually()" ref="indicator" :status="status"></update-indicator>
</div>
<v-row> <v-row>
<v-col cols="12"> <v-col cols="12">
<lesson-documentations <lesson-documentations
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
<v-tooltip bottom> <v-tooltip bottom>
<template v-slot:activator="{ on, attrs }"> <template v-slot:activator="{ on, attrs }">
<v-btn <v-btn
absolute
fab
right right
icon icon
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
{% load render_bundle from webpack_loader %} {% load render_bundle from webpack_loader %}
{% block page_title %} {% block page_title %}
<v-btn x-large icon color="primary" :href="urls.select_coursebook()"><v-icon>mdi-chevron-left</v-icon></v-btn>
{% trans "Coursebook" %} {% trans "Coursebook" %}
{% endblock %} {% endblock %}
{% block browser_title %}{% trans "Coursebook" %} {{ lesson }}{% endblock %} {% block browser_title %}{% trans "Coursebook" %} {{ lesson }}{% 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