私は次のフォームを持っています:
class AlertForm(forms.Form):
user_choices = sorted([(c.id, c.first_name + ' ' + c.last_name) \
for c in User.objects.all()], key=lambda user: user[1])
message = forms.CharField(widget=forms.Textarea())
recipients = forms.MultipleChoiceField(choices=user_choices,
widget=forms.SelectMultiple(attrs={'size':'20'}),
help_text="You will automatically be included with the recipients.")
問題は、管理インターフェイスまたはその他の方法を使用してデータベースにユーザーを追加した場合、新しく追加されたユーザーが MultipleChoiceField に表示される前に、サーバーを再起動する必要があることです。サーバーの再起動を回避するにはどうすればよいですか?