from django import forms from django.db import models class FoodChoices(models.TextChoices): BREAD = 'bread', 'パン' RICE = 'rice', ...
確定! 回上一頁