0
1

More than 3 years have passed since last update.

Django モデルを管理者ツールに登録する

Posted at

Friendモデルを管理者ツールで管理したい場合

admin.pyに以下のように編集する

admin.py
from django.contrib import admin # 元からあるやつ
from .models import Friend

admin.site.register(Friend)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1