This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
308 B
Python
Raw Permalink Normal View History

from django.shortcuts import render
import os.path
def homePage(request):
currencyTotal = open(os.path.dirname(__file__) + "/../currency.txt","r")
currencyTotal = currencyTotal.readline()
context = {
"currencyTotal" : currencyTotal
}
return render(request, "home.html", context)