1
I`m:ジャンゴFilteredSelectMultiple以下ではDjango 1.9を使用したウィジェットの変更ツールチップのタイトル
models.py:
class LocationPoint(models.Model):
title = models.CharField(max_length=30)
radius = models.FloatField(null=True, blank=True)
point = models.PointField(srid=4326, null=True, blank=True)
objects = models.GeoManager()
def __unicode__(self):
return self.title
がforms.py:
from django.contrib.admin.widgets import FilteredSelectMultiple
from api.models import *
class PopulationConstraintsForm(forms.ModelForm):
location_point = forms.ModelMultipleChoiceField(
queryset=LocationPoint.objects.all(),
widget=FilteredSelectMultiple("location point", is_stacked=False)
)
とtemplate.html
<div class="row">
{{ form.location_point }}
</div>
は、どのように私は私が(サンプルでツールチップは、「TelAviv」を示している)場所ポイントモデル内のオブジェクトの上にマウスを置くと現れるツールチップのタイトルを変更できますか?
ウィジェットによって自動的に生成されたhtml。