The Django admin is an automatically-generated, web-based interface for managing your application's data — a fully-functional CRUD UI for your models that you get almost for free. It's one of Django's most celebrated "batteries-included" features.
Getting it (almost) for free
django.contrib admin
.models Article
admin.site.register(Article)
