Просмотр исходного кода

Merge branch 'master' of avinash123/grunge into master

benw 2 лет назад
Родитель
Сommit
ce46f1b182
2 измененных файлов с 3 добавлено и 0 удалено
  1. 1 0
      README.md
  2. 2 0
      grunge/admin.py

+ 1 - 0
README.md

@@ -11,6 +11,7 @@ This Django project implements a catalogue of Grunge rock music.  It has a fully
 ## Goals
 
 * Implement the ability to fetch, create, update, and delete playlists through the REST API.  A playlist should have a `uuid`, a `name`, and contain 0 or more tracks from this catalogue.  The tracks should be orderable in the playlist.
+* Implement the ability to fetch, create, update, and delete playlists through the django templates.  A playlist should have a `uuid`, a `name`, and contain 0 or more tracks from this catalogue.  The tracks should be orderable in the playlist.
 * Implement the test cases in `tests/test_playlists.py`.  The goal is to have no skipped or failing tests.
 * Update the Django admin with the ability to browse and manage playlists.
 

+ 2 - 0
grunge/admin.py

@@ -9,6 +9,8 @@ from rest_framework.reverse import reverse as drf_reverse
 
 from .models import Album, Artist, Track
 
+# test..
+
 
 def get_api_url(obj, view="detail", params=None, title=None, request=None):
     path = drf_reverse(