Show invoices only if the user's invoice were imported
Else fallback to orders url as before
This commit is contained in:
parent
316646465d
commit
8dfee2bd83
2 changed files with 9 additions and 1 deletions
|
|
@ -83,6 +83,14 @@ class DashboardView(LoginRequiredMixin, View):
|
|||
@method_decorator(decorators)
|
||||
def get(self, request, *args, **kwargs):
|
||||
context = self.get_context_data()
|
||||
try:
|
||||
MonthlyHostingBill.objects.get(email=self.request.user.email)
|
||||
context['has_invoices'] = True
|
||||
except MonthlyHostingBill.DoesNotExist as dne:
|
||||
logger.error("{}'s monthly hosting bill not imported ?".format(
|
||||
self.request.user.email
|
||||
))
|
||||
context['has_invoices'] = False
|
||||
return render(request, self.template_name, context)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue