LoginSignup
7
2

More than 5 years have passed since last update.

【Django】プルダウンメニュー作る

Last updated at Posted at 2017-07-24

以下の通り

forms.py
from django import forms

CHOICE = (
    ('', '選択肢から選んでください><'),
    ('0', 'キュート'),
    ('1', 'クール'),
    ('2', 'パッション'),
)

def SampleForm(forms.Form):
    select = forms.ChoiceField(widget=forms.Select, choices=CHOICE)

はい

7
2
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
7
2