The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
19 lines
608 B
Python
19 lines
608 B
Python
from django.shortcuts import render
|
|
|
|
from .. import ParameterValidator
|
|
|
|
|
|
def index(request):
|
|
with ParameterValidator(request.GET, 'upgrade_id') as validator:
|
|
try:
|
|
amount_param = float(request.GET['upgrade'])
|
|
except (KeyError, ValueError):
|
|
validator.fail()
|
|
else:
|
|
validator.validate('{:.2f}'.format(amount_param))
|
|
partial_amount = amount_param if validator.valid else 0
|
|
context = {
|
|
'partial_amount': partial_amount,
|
|
'minimum_amount': 120 - partial_amount,
|
|
}
|
|
return render(request, "supporter/index.html", context)
|