pages.admin   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
""" This file is here to register objects with the admin site. """
2
from django.contrib import admin
3
4
from .models import Article
5
6
admin.site.register(Article)
7