23 lines
420 B
HTML
23 lines
420 B
HTML
{% 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 %}
|
|
|
|
{% endif %} |