mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 04:29:55 +02:00
Attribute artist
This commit is contained in:
parent
8687a64873
commit
4e44e4e4b6
31 changed files with 1741 additions and 46 deletions
|
@ -65,6 +65,7 @@
|
|||
</modal>
|
||||
</template>
|
||||
<router-link
|
||||
v-if="track.is_local"
|
||||
:to="{name: 'library.tracks.edit', params: {id: track.id }}"
|
||||
class="ui icon labeled button">
|
||||
<i class="edit icon"></i>
|
||||
|
|
|
@ -63,6 +63,16 @@
|
|||
<translate translate-context="*/*/*">N/A</translate>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<translate translate-context="Content/*/*/Noun">Federation ID</translate>
|
||||
</td>
|
||||
<td :title="track.fid">
|
||||
<a :href="track.fid" target="_blank" rel="noopener noreferrer">
|
||||
{{ track.fid|truncate(65)}}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
|
|
@ -6,8 +6,11 @@
|
|||
<translate v-if="canEdit" key="1" translate-context="Content/*/Title">Edit this track</translate>
|
||||
<translate v-else key="2" translate-context="Content/*/Title">Suggest an edit on this track</translate>
|
||||
</h2>
|
||||
<div class="ui message" v-if="!object.is_local">
|
||||
<translate translate-context="Content/*/Message">This object is managed by another server, you cannot edit it.</translate>
|
||||
</div>
|
||||
<edit-form
|
||||
v-if="!isLoadingLicenses"
|
||||
v-else-if="!isLoadingLicenses"
|
||||
:object-type="objectType"
|
||||
:object="object"
|
||||
:can-edit="canEdit"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue