This repository has been archived on 2023-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
django-quasar-lista-compra/authentication/admin.py
2023-02-19 21:58:46 +01:00

11 lines
171 B
Python

from django.contrib import admin
from authentication.models import User
@admin.register(User)
class UserAdmin(admin.ModelAdmin):
pass
# Register your models here.