0.4.32 fix get_footer_contacts

This commit is contained in:
SDE
2023-12-22 18:21:47 +05:00
parent 20df116b40
commit 3ff4a480e2

View File

@@ -8,7 +8,7 @@ def get_logo_url():
def get_footer_contacts():
from .models import Option
options = Option.objects.filter(enable=True, opt_type__in=['footer_email', 'footer_phone'])
options = Option.objects.filter(enable=True, opt_type__in=['footer_email', 'footer_phone']).order_by('order')
return options