diff --git a/datacenterlight/templatetags/custom_tags.py b/datacenterlight/templatetags/custom_tags.py
index 8003be0e..0015ac58 100644
--- a/datacenterlight/templatetags/custom_tags.py
+++ b/datacenterlight/templatetags/custom_tags.py
@@ -72,25 +72,29 @@ def get_line_item_from_hosting_order_charge(hosting_order_id):
:param hosting_order_id: the HostingOrder id
:return:
"""
- hosting_order = HostingOrder.objects.get(id = hosting_order_id)
- if hosting_order.stripe_charge_id:
- return mark_safe("""
-
{product_name} |
- {created_at} |
- {total} |
-
- {see_invoice_text}
- |
- """.format(
- product_name=hosting_order.generic_product.product_name.capitalize(),
- created_at=hosting_order.created_at.strftime('%Y-%m-%d'),
- total='%.2f' % (hosting_order.price),
- receipt_url=reverse('hosting:orders',
- kwargs={'pk': hosting_order.id}),
+ try:
+ hosting_order = HostingOrder.objects.get(id = hosting_order_id)
+ if hosting_order.stripe_charge_id:
+ return mark_safe("""
+ {product_name} |
+ {created_at} |
+ {total} |
+
+ {see_invoice_text}
+ |
+ """.format(
+ product_name=hosting_order.generic_product.product_name.capitalize(),
+ created_at=hosting_order.created_at.strftime('%Y-%m-%d'),
+ total='%.2f' % (hosting_order.price),
+ receipt_url=reverse('hosting:orders',
+ kwargs={'pk': hosting_order.id}),
- see_invoice_text=_("See Invoice")
- ))
- else:
+ see_invoice_text=_("See Invoice")
+ ))
+ else:
+ return ""
+ except Exception as ex:
+ logger.error("Error %s" % str(ex))
return ""