Commit c7866935 by bergquist

ux(playlist): migrate playlists page to new styles

parent afb62638
<navbar icon="fa fa-fw fa-list" title="New Playlist"> <navbar icon="fa fa-fw fa-list" title="Playlists">
</navbar> </navbar>
<div class="page-container"> <div class="page-container">
<div class="page-wide"> <div class="page-header">
<a class="btn btn-success pull-right" href="playlists/create">
<i class="fa fa-plus"></i>
New Playlist
</a>
<h1>Saved playlists</h1> <h1>Saved playlists</h1>
<a class="btn btn-success pull-right" href="playlists/create">
<i class="fa fa-plus"></i>
New Playlist
</a>
</div>
<table class="filter-table" style="margin-top: 20px"> <table class="filter-table" style="margin-top: 20px">
<thead> <thead>
<th><strong>Name</strong></th> <th><strong>Name</strong></th>
<th><strong>Start url</strong></th> <th><strong>Start url</strong></th>
<th style="width: 68px"></th> <th style="width: 68px"></th>
<th style="width: 68px"></th> <th style="width: 68px"></th>
<th style="width: 25px"></th> <th style="width: 25px"></th>
</thead> </thead>
<tr ng-repeat="playlist in ctrl.playlists"> <tr ng-repeat="playlist in ctrl.playlists">
<td> <td>
<a href="playlists/edit/{{playlist.id}}">{{playlist.name}}</a> <a href="playlists/edit/{{playlist.id}}">{{playlist.name}}</a>
</td> </td>
<td > <td >
<a href="playlists/play/{{playlist.id}}">playlists/play/{{playlist.id}}</a> <a href="playlists/play/{{playlist.id}}">playlists/play/{{playlist.id}}</a>
</td> </td>
<td class="text-center"> <td class="text-center">
<a href="playlists/play/{{playlist.id}}" class="btn btn-inverse btn-small"> <a href="playlists/play/{{playlist.id}}" class="btn btn-inverse btn-small">
<i class="fa fa-play"></i> <i class="fa fa-play"></i>
Play Play
</a> </a>
</td> </td>
<td class="text-right"> <td class="text-right">
<a href="playlists/edit/{{playlist.id}}" class="btn btn-inverse btn-small"> <a href="playlists/edit/{{playlist.id}}" class="btn btn-inverse btn-small">
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
Edit Edit
</a> </a>
</td> </td>
<td class="text-right"> <td class="text-right">
<a ng-click="ctrl.removePlaylist(playlist)" class="btn btn-danger btn-small"> <a ng-click="ctrl.removePlaylist(playlist)" class="btn btn-danger btn-small">
<i class="fa fa-remove"></i> <i class="fa fa-remove"></i>
</a> </a>
</td> </td>
</tr> </tr>
</table> </table>
</div>
</div> </div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment