2019-08-26 05:59:18 +00:00
|
|
|
{% set domains = frappe.get_doc("Domain Settings").active_domains %}
|
2019-09-26 07:23:52 +00:00
|
|
|
{% set links = {
|
|
|
|
'Manufacturing': '/manufacturing',
|
|
|
|
'Services': '/services',
|
|
|
|
'Retail': '/retail',
|
|
|
|
'Distribution': '/distribution',
|
|
|
|
'Non Profit': '/non-profit',
|
|
|
|
'Education': '/education',
|
|
|
|
'Healthcare': '/healthcare',
|
|
|
|
'Agriculture': '/agriculture',
|
|
|
|
'Hospitality': ''
|
|
|
|
} %}
|
2020-06-18 14:19:46 +00:00
|
|
|
|
2019-09-26 07:23:52 +00:00
|
|
|
{% set link = '' %}
|
2020-06-23 05:41:13 +00:00
|
|
|
{% set label = '' %}
|
2019-09-26 07:23:52 +00:00
|
|
|
{% if domains %}
|
2020-06-23 05:41:13 +00:00
|
|
|
{% set label = domains[0].domain %}
|
2020-06-18 14:19:46 +00:00
|
|
|
{% set link = links[label] %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if label == "Services" %}
|
|
|
|
{% set label = "Service" %}
|
2019-09-26 07:23:52 +00:00
|
|
|
{% endif %}
|
2019-08-26 05:59:18 +00:00
|
|
|
|
2020-06-18 14:19:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
<a href="https://erpnext.com{{ link }}?source=website_footer" target="_blank" class="text-muted">Powered by ERPNext - {{ '' if domains else 'Open Source' }} ERP Software {{ ('for ' + label + ' Companies') if domains else '' }}</a>
|