added more fields (read only atm) for recorders

This commit is contained in:
2019-11-22 14:25:29 +01:00
parent 5792af21a5
commit c071591d82
5 changed files with 3563 additions and 3522 deletions

View File

@@ -1,6 +1,7 @@
<!-- components/Login.vue -->
<template>
<div>
<div v-if="!authenticated">
<section class="hero is-primary">
<div class="hero-body">
<div class="container has-text-centered">
@@ -45,7 +46,11 @@
</div>
</section>
</div>
<div v-else>
<h1>{{ $t('You are already logged in!') }}</h1>
<p><a href="some_logout_url">{{$t('logout')}}</a></p>
</div>
</div>
</template>
@@ -108,6 +113,10 @@
users() {
return this.$store.state.users;
},
authenticated() {
return this.$store.getters.isAuthenticated;
}
},
};
</script>