ランキング参加中プログラミング07 | テンプレート << [ホーム] >> 09 | 管理ダッシュボードのカスタマイズ モデルを作成し、データベースにフィールドを作成します。 「testapp/models.py」ファイルを以下のように編集します。 記述変更 【testapp/models.py】 from django.db import models # Create your models here. class Picture(models.Model): name = models.CharField( max_length= 50, null = False ) descript…