FIX colore e add
This commit is contained in:
parent
9d07653817
commit
1e1a446655
2 changed files with 3 additions and 3 deletions
|
@ -52,9 +52,9 @@ class RapportoRicezione(models.Model):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def colore(self):
|
def colore(self):
|
||||||
colors = ['red', 'yellow', 'orange', '#90c90d', 'green']
|
colors = ['darkred', 'red', 'yellow', 'orange', '#90c90d', 'green']
|
||||||
c = int(self.comprensibile)
|
c = int(self.comprensibile)
|
||||||
return colors[c-1]
|
return colors[c]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def radius(self):
|
def radius(self):
|
||||||
|
|
|
@ -33,7 +33,7 @@ def rapporto_add(request):
|
||||||
lat=float(request.POST["lat"]),
|
lat=float(request.POST["lat"]),
|
||||||
lng=float(request.POST["lng"]),
|
lng=float(request.POST["lng"]),
|
||||||
comprensibile=int(request.POST["comprensibile"]),
|
comprensibile=int(request.POST["comprensibile"]),
|
||||||
stabilita=int(request.POST["comprensibile"]),
|
stabilita=int(request.POST["stabilita"]),
|
||||||
tipo_radio=TipoRadio.objects.get(pk=request.POST["tiporadio"]),
|
tipo_radio=TipoRadio.objects.get(pk=request.POST["tiporadio"]),
|
||||||
)
|
)
|
||||||
r.save()
|
r.save()
|
||||||
|
|
Loading…
Reference in a new issue