47 lines
1.7 KiB
HTML
47 lines
1.7 KiB
HTML
|
|
|
|
<div class="w-[100%]">
|
|
|
|
<div class="text-sm breadcrumbs ml-[10px]">
|
|
<ul>
|
|
<li><a>Danh sách sản phẩm</a></li>
|
|
<li class="text-[#0041E8]">Form thêm/sửa sản phẩm</li>
|
|
</ul>
|
|
</div>
|
|
<div class="w-[1141px] m-auto">
|
|
<div
|
|
class="title py-[15px] bg-white rounded-[10px] text-center mt-[40px] mb-[15px] font-bold text-[18px] shadow-[0_1px_1px_0_rgba(0,0,0,0.1)]">
|
|
Cập nhật: {{ page.product_info.title }} (ID: {{ page.product_info.id }})</div>
|
|
|
|
<div class="flex">
|
|
<div class="left w-[273px] mr-[15px]">
|
|
<div class="bg-white rounded-[10px] shadow-[0_1px_1px_0_rgba(0,0,0,0.1)]">
|
|
|
|
{% for _menu in page.product_menu %}
|
|
<a role="tab" href="/?module=product&view=form&part={{ _menu.id }}"
|
|
class="py-[7px] px-[15px] text-[#919699] block border-b-[1px] border-[#fafafb]">
|
|
{{ _menu.name }}
|
|
{% if _menu.is_current == 1 %}
|
|
- (current)
|
|
{% endif %}
|
|
</a>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="right w-[852px]">
|
|
|
|
{% if page.view_part == "basic" %}
|
|
{% include 'product/form_components/basic' %}
|
|
{% elsif page.view_part == "anonymous" %}
|
|
{% include 'product/form_components/basic' %}
|
|
{% else %}
|
|
<!--//default-->
|
|
{% include 'product/form_components/basic' %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|