Take users to invoice url instead of orders

Orders need a VAT alignment fix
This commit is contained in:
PCoder 2020-02-01 13:00:04 +05:30
parent b645f9894b
commit 23b25002ae
3 changed files with 20 additions and 21 deletions

View File

@ -173,8 +173,7 @@ def create_vm_task(self, vm_template_id, user, specs, template, order_id):
context = {
'base_url': "{0}://{1}".format(user.get('request_scheme'),
user.get('request_host')),
'order_url': reverse('hosting:orders',
kwargs={'pk': order_id}),
'order_url': reverse('hosting:invoices'),
'page_header': _(
'Your New VM %(vm_name)s at Data Center Light') % {
'vm_name': vm.get('name')},

View File

@ -103,26 +103,26 @@
<strong>{% trans "Product" %}:</strong>&nbsp;
{{ request.session.template.name }}
</p>
<style>
@media screen and (max-width:767px){
.cmf-ord-heading {
font-size: 13px;
}
.order-detail-container .order-details {
font-size: 13px;
}
}
<style>
@media screen and (max-width:767px){
.cmf-ord-heading {
font-size: 13px;
}
.order-detail-container .order-details {
font-size: 13px;
}
}
@media screen and (max-width:367px){
.cmf-ord-heading {
font-size: 13px;
}
.order-detail-container .order-details {
font-size: 12px;
}
}
@media screen and (max-width:367px){
.cmf-ord-heading {
font-size: 13px;
}
.order-detail-container .order-details {
font-size: 12px;
}
}
</style>
</style>
<div class="row">
<div class="col-sm-8">
<p>

View File

@ -1154,7 +1154,7 @@ class OrderConfirmationView(DetailView, FormView):
response = {
'status': True,
'redirect': (
reverse('hosting:orders')
reverse('hosting:invoices')
if request.user.is_authenticated()
else reverse('datacenterlight:index')
),