This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/userausfall/admin.py

7 lines
143 B
Python
Raw Permalink Normal View History

2021-04-14 11:21:39 +02:00
from django.contrib import admin
2021-10-21 09:58:18 +02:00
from userausfall.models import TrustBridge, User
2021-04-14 11:21:39 +02:00
admin.site.register(TrustBridge)
admin.site.register(User)