WEBVTT
Kind: captions
Language: en

00:00:00.030 --> 00:00:05.160
Now that we've added our profile feed
item model we need to register this

00:00:05.160 --> 00:00:10.530
model in the Django admin so we can
manage the objects in this table through

00:00:10.530 --> 00:00:13.200
the Django admin interface

00:00:13.200 --> 00:00:17.480
so in the project open up the admin dot py file

00:00:17.480 --> 00:00:23.130
the way we register models just like we
did previously is we use this admin dot

00:00:23.130 --> 00:00:27.599
site dot Register function and then we
pass in the model we wish to register

00:00:27.599 --> 00:00:34.770
with the Django admin so underneath this
line here let's add admin dot site dot register

00:00:34.770 --> 00:00:45.270
and we're going to register models dot
profile feed item then remember to save

00:00:45.270 --> 00:00:50.489
this file and the next time we start the
Django admin we will be able to see

00:00:50.489 --> 00:00:54.690
our profile feed item models in
there and manage the objects in that

00:00:54.690 --> 00:00:57.500
database model

