7 lines
87 B
Python
7 lines
87 B
Python
from django.contrib import admin
|
|
from .models import Link
|
|
|
|
admin.site.register(Link)
|
|
|
|
|