我对python / django还是很陌生,但是以前用C#和VB.Net编程。我需要在Django表单上创建一个列表,其中包含来自PGSQL表的数据元素。用户应该能够选择多行,然后我将制定一个查询,并将其发送回服务器。我进行了研究,但没有找到任何指向正确方向的信息。我将在下面显示我的代码。
forms.py
PROD_MULTI_RECORDS=[
('darryl.dillman','darryl.dillman'),
('richard.mcgarry','richard.mcgarry'),
('janet.delage','janet.delage')
]
class rdsprodform(forms.Form):
selectmulti =
forms.CharField(widget=forms.SelectMultiple(choices=PROD_MULTI_RECORDS),
required = False, label = "Please select records to process")