2020-12-25 09:11:13 +00:00
|
|
|
from django.views.generic.base import TemplateView
|
|
|
|
|
2021-05-25 17:55:33 +00:00
|
|
|
from uncloud_pay.selectors import get_balance_for_user
|
|
|
|
|
2020-12-25 09:11:13 +00:00
|
|
|
class UncloudIndex(TemplateView):
|
|
|
|
template_name = "uncloud/index.html"
|
2021-05-25 17:55:33 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
print(context)
|
|
|
|
if self.request.user.is_authenticated:
|
|
|
|
context['balance'] = get_balance_for_user(self.request.user)
|
|
|
|
return context
|