|
@@ -8,6 +8,8 @@ from django.core.exceptions import ValidationError
|
|
from localflavor.generic.models import IBANField, BICField
|
|
from localflavor.generic.models import IBANField, BICField
|
|
from localflavor.fr.models import FRSIRETField
|
|
from localflavor.fr.models import FRSIRETField
|
|
|
|
|
|
|
|
+from multiselectfield import MultiSelectField
|
|
|
|
+
|
|
from coin.members.models import count_active_members
|
|
from coin.members.models import count_active_members
|
|
from coin.offers.models import count_active_subscriptions
|
|
from coin.offers.models import count_active_subscriptions
|
|
from coin import utils
|
|
from coin import utils
|
|
@@ -203,15 +205,15 @@ class ChatRoom(models.Model):
|
|
|
|
|
|
class CoveredArea(models.Model):
|
|
class CoveredArea(models.Model):
|
|
name = models.CharField(max_length=512)
|
|
name = models.CharField(max_length=512)
|
|
- # TODO: we must allow multiple values
|
|
|
|
- technologies = models.CharField(choices=TECHNOLOGIES, max_length=16)
|
|
|
|
|
|
+
|
|
|
|
+ technologies = MultiSelectField(choices=TECHNOLOGIES, max_length=42)
|
|
# TODO: find a geojson library
|
|
# TODO: find a geojson library
|
|
#area =
|
|
#area =
|
|
isp = models.ForeignKey(ISPInfo)
|
|
isp = models.ForeignKey(ISPInfo)
|
|
|
|
|
|
def to_dict(self):
|
|
def to_dict(self):
|
|
return {"name": self.name,
|
|
return {"name": self.name,
|
|
- "technologies": [self.technologies]}
|
|
|
|
|
|
+ "technologies": self.technologies}
|
|
|
|
|
|
|
|
|
|
class BankInfo(models.Model):
|
|
class BankInfo(models.Model):
|