Coverage for author\admin.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-06-29 10:02 +0100

1from django.contrib import admin 

2from author.models import Author 

3""" 

4This module registers the Author model with the Django admin site. 

5""" 

6admin.site.register(Author)