diff --git a/django.md b/django.md index 3c2f06f..c01752d 100644 --- a/django.md +++ b/django.md @@ -133,7 +133,7 @@ from .models import Contact class ContactSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = Contact - fields = ('id', 'contact_url', 'name', 'age',) + fields = ('id', 'name', 'age',) ``` set contacts_api/views.py to