7 lines
132 B
Python
7 lines
132 B
Python
from django.contrib import admin
|
|
from autenticacion.models import perfil
|
|
# Register your models here.
|
|
|
|
|
|
|
|
admin.site.register(perfil) |