Skip to content
Permalink
63e212f5ed
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (15 sloc) 488 Bytes
<head>
<title>Playlist Editor</title>
<meta charset="utf-8" />
</head>
<div ng-controller="adminController" ng-init="getPlaylists();">
<a>Create New Playlist</a>
<table>
<tr ng-repeat="playlist in playlists">
<td>{{ playlist.PlaylistID }}</td>
<td>{{ playlist.Name }}</td>
<td><a ui-sref="admin-edit-playlist">Edit</a></td>
<td><a ui-sref="admin-delete-playlist">Delete</a></td>
</tr>
</table>
</div>