4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-15 13:46:37 +00:00
AzuraCast/frontend/vue/components/Stations/Profile/BackendNonePanel.vue
2023-01-06 19:05:40 -06:00

21 lines
574 B
Vue

<template>
<section
id="profile-backend"
class="card"
role="region"
>
<div class="card-header bg-primary-dark">
<h3 class="card-title">
{{ $gettext('AutoDJ Disabled') }}
</h3>
</div>
<div class="card-body">
<p class="card-text">
{{
$gettext('AutoDJ has been disabled for this station. No music will automatically be played when a source is not live.')
}}
</p>
</div>
</section>
</template>