У меня следующая структура:
В app1 у меня есть представление с именем stato_patrimoniale
:
def stato_patrimoniale(request):
now=datetime.datetime.now()
last_account_year=float(now.year)-1 #definizione dell'ultimo anno contabile
now = now.year
if request.method == 'POST':
year = request.POST['year']
if year != '':
now = year
last_account_year = float(now) - 1
context= {
'last_account_year': last_account_year}
return render(request, 'stato_patrimoniale/stato_patrimoniale.html', context)
в приложении2 У меня есть функция с именем my_fun c ()
Теперь я хочу использовать значение last_account_year
в my_fun c () в приложении 2, в котором У меня есть такая функция:
def my_func():
last_account_year = ""
Как мне получить такой результат?