From cafd7a07a74ce7ecfa2d60a48446416539d2c5d8 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sat, 13 Feb 2021 16:36:53 -0500 Subject: [PATCH] Update django.md --- django.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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