Files
admin_hura_8/template/javascript/index.html

27 lines
493 B
HTML
Raw Normal View History

2024-01-24 11:49:22 +07:00
{% include javascript/global %}
2024-01-28 10:53:31 +07:00
{% if global.module == 'home' %}
2024-02-21 09:53:08 +07:00
2024-02-29 14:49:03 +07:00
{% include javascript/homepage %}
2024-01-28 10:53:31 +07:00
{% elsif global.module == 'product' %}
2024-02-29 14:49:03 +07:00
{% if global.view == 'home' %}
{% include javascript/product_list %}
{% endif %}
2024-02-21 09:53:08 +07:00
2024-02-29 14:49:03 +07:00
{% include javascript/product_form %}
2024-02-21 09:53:08 +07:00
{% elsif global.module == 'deal' %}
2024-01-25 17:37:49 +07:00
2024-02-29 14:49:03 +07:00
{% include javascript/product_form %}
{% elsif global.module == 'brand' %}
{% include javascript/brand %}
2024-03-18 12:03:24 +07:00
{% elsif global.module == 'report' %}
{% include javascript/visitor %}
{% endif %}