mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<div class="header-page">
|
|
<div class="back">
|
|
<a ng-click="backPrevLocation($event)"><i class="fas fa-long-arrow-alt-left "></i></a>
|
|
</div>
|
|
|
|
<div class="center">
|
|
<h1 translate>{{ 'app.admin.store.manage_the_store' }}</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="m-lg admin-store-manage">
|
|
<div class="row">
|
|
|
|
<div>
|
|
<uib-tabset justified="true" active="tabs.active">
|
|
|
|
<uib-tab heading="{{ 'app.admin.store.settings' | translate }}" index="0" select="selectTab()" ng-hide="currentUser.role == 'manager'">
|
|
<div ng-if="tabs.active === 0">
|
|
<ng-include src="'/admin/store/settings.html'"></ng-include>
|
|
</div>
|
|
</uib-tab>
|
|
|
|
<uib-tab heading="{{ 'app.admin.store.all_products' | translate }}" index="1" select="selectTab()">
|
|
<div ng-if="tabs.active === 1">
|
|
<ng-include src="'/admin/store/products.html'"></ng-include>
|
|
</div>
|
|
</uib-tab>
|
|
|
|
<uib-tab heading="{{ 'app.admin.store.categories_of_store' | translate }}" index="2" select="selectTab()">
|
|
<div ng-if="tabs.active === 2">
|
|
<ng-include src="'/admin/store/categories.html'"></ng-include>
|
|
</div>
|
|
</uib-tab>
|
|
|
|
<uib-tab heading="{{ 'app.admin.store.the_orders' | translate }}" index="3" select="selectTab()">
|
|
<div ng-if="tabs.active === 3">
|
|
<ng-include src="'/admin/store/orders.html'"></ng-include>
|
|
</div>
|
|
</uib-tab>
|
|
</uib-tabset>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|