Re: Django group email in spam

2016-09-07 Thread sylvain_grodes
Same problem here, I have to check my spam and unset the spam flag. Le vendredi 2 septembre 2016 02:12:18 UTC-4, Lachlan Musicman a écrit : > > Hey, > > I've been seeing a lot of Django group email going into my spam folder > over the last 48 hours. > > Have there been any changes to the group

Re: : Multipoint field only shows the first point in OSMAdmin

2011-07-19 Thread sylvain_grodes
ld it and make it reachable anywhere on the internet - edit django/contrib/gis/admin/options.py and update openlayers_url to your own url Hope this can help someone else On Jul 19, 11:29 am, sylvain_grodes wrote: > Hello, today I'm facing a problem which coud be a Geodjango/OpenLayer > or

[GEODJANGO]: Multipoint field only shows the first point in OSMAdmin

2011-07-19 Thread sylvain_grodes
Hello, today I'm facing a problem which coud be a Geodjango/OpenLayer or Django. How to reproduce: * in your model create a class: from django.contrib.gis.db import models class Track(models.Model): track = models.MultiPointField(srid=4326) * in your admin.py add: admin.site.register(Trac