50 lines
979 B
HTML
50 lines
979 B
HTML
<script src="/assets/typescript/main.js?v=1.111"></script>
|
|
|
|
{% include javascript/global %}
|
|
|
|
{% if global.module == 'home' %}
|
|
|
|
{% include javascript/homepage %}
|
|
|
|
{% elsif global.module == 'product' %}
|
|
|
|
{% if global.view == 'home' %}
|
|
{% include javascript/product_list %}
|
|
{% endif %}
|
|
|
|
{% include javascript/product_form %}
|
|
|
|
{% elsif global.module == 'deal' %}
|
|
|
|
{% include javascript/product_form %}
|
|
|
|
{% elsif global.module == 'brand' %}
|
|
|
|
{% include javascript/brand %}
|
|
|
|
{% elsif global.module == 'report' %}
|
|
|
|
{% include javascript/visitor %}
|
|
|
|
{% elsif global.module == 'system' %}
|
|
|
|
{% include javascript/system %}
|
|
|
|
{% elsif global.module == 'page' %}
|
|
|
|
{% include javascript/page %}
|
|
|
|
{% elsif global.module == 'template' and global.view == 'edit-template' %}
|
|
|
|
{% include javascript/edit_template %}
|
|
|
|
{% elsif global.module == 'tag' and global.view == 'add' %}
|
|
|
|
{% include javascript/tag %}
|
|
|
|
{% elsif global.module == 'shipping2' %}
|
|
|
|
{% include javascript/shipping2 %}
|
|
|
|
|
|
{% endif %} |