|
|
@@ -173,7 +173,8 @@ def welcome(request):
|
|
|
|
|
|
print('data',data)
|
|
|
print('numero aziende',len(data['AziendaLista']))
|
|
|
- print('numero di sedi',len(data['sedeLista']))
|
|
|
+ if 'sedeLista' in data:
|
|
|
+ print('numero di sedi',len(data['sedeLista']))
|
|
|
|
|
|
return render(request,'azienda.welcome.html',data)
|
|
|
|