feat: setup complete back
This commit is contained in:
parent
515900ca9d
commit
4ac735c3be
|
|
@ -37,7 +37,7 @@ const courseSessionName = ref("");
|
||||||
</p>
|
</p>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="courseSessionName" #footer>
|
<template #footer>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{ name: 'accountProfile' }"
|
:to="{ name: 'accountProfile' }"
|
||||||
class="btn-secondary flex items-center"
|
class="btn-secondary flex items-center"
|
||||||
|
|
@ -45,7 +45,7 @@ const courseSessionName = ref("");
|
||||||
<it-icon-arrow-left class="it-icon mr-2 h-6 w-6" />
|
<it-icon-arrow-left class="it-icon mr-2 h-6 w-6" />
|
||||||
Zurück
|
Zurück
|
||||||
</router-link>
|
</router-link>
|
||||||
<router-link to="/" class="btn-blue flex items-center">
|
<router-link v-if="courseSessionName" to="/" class="btn-blue flex items-center">
|
||||||
Jetzt mit dem Lehrgang starten
|
Jetzt mit dem Lehrgang starten
|
||||||
<it-icon-arrow-right class="it-icon ml-2 h-6 w-6" />
|
<it-icon-arrow-right class="it-icon ml-2 h-6 w-6" />
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import uuid
|
import uuid
|
||||||
from unittest.mock import patch, Mock
|
from unittest.mock import Mock, patch
|
||||||
|
|
||||||
from authlib.integrations.base_client import OAuthError
|
from authlib.integrations.base_client import OAuthError
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue