Skip to content
Snippets Groups Projects
Commit a841a584 authored by Robert-K's avatar Robert-K
Browse files

Removed unnecessary/old token.vue

parent afcb6a5a
No related branches found
No related tags found
No related merge requests found
<template>
<div>
<b-card>
<h3 class="float-left">{{token.token}}</h3>
<b-button-group class="float-right">
<b-button variant="outline-primary"><font-awesome-icon :icon="['far', 'edit']"></font-awesome-icon></b-button>
<b-button variant="danger"><font-awesome-icon :icon="['far', 'trash-alt']"></font-awesome-icon></b-button>
</b-button-group>
<div class="clearfix"></div>
<p>Beschreibung: {{token.description}}</p>
<p>Gültig bis: {{token.delete_date}}</p>
<p>Letzter Login: {{token.last_login_date}}</p>
<p>{{token.description}}</p>
</b-card>
</div>
</template>
<script>
export default {
name: "entry",
props: {
token: Object
}
}
</script>
<style scoped>
</style>
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