mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
31 lines
1 KiB
HTML
31 lines
1 KiB
HTML
<h1>Genre Editor</h1>
|
|
|
|
<section class="genre-list stretch-to-bottom">
|
|
<table class="table">
|
|
<thead>
|
|
<th>Genre</th>
|
|
<th class="-status"></th>
|
|
<th># of tracks (including deleted)</th>
|
|
<th>Actions</th>
|
|
</thead>
|
|
<tr ng-repeat="genre in genres">
|
|
<td>
|
|
<input
|
|
type="text"
|
|
class="x-large"
|
|
ng-class="{'x-saving': genre.isSaving, 'x-error': genre.isError}"
|
|
ng-model="genre.name"
|
|
pfm-on-enter="renameGenre(genre)"
|
|
/>
|
|
<div class="alert alert-error" ng-show="genre.isError">
|
|
{{ genre.errorMessage }}
|
|
</div>
|
|
</td>
|
|
<td><i ng-show="genre.isSaving" class="icon-cog icon-spin icon-large"></i></td>
|
|
<td>{{ genre.track_count }}</td>
|
|
<td>
|
|
<button class="btn btn-warning" disabled>Merge…</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|