Initial commit

This commit is contained in:
Senad Uka
2018-06-11 11:09:35 +02:00
commit ed7df7b11f
1954 changed files with 483354 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<div id="edit-packages" class="dropzone-packages" country-selected="{{countrySelected}}">
<h3>{{ 'packages.headers.EDIT_PACKAGES' | translate }} {{ getEditPackagesTitle() }}</h3>
<div id="edit-packages-countries" class="packages-countries row justify-content-start">
<label for="selectCountry" class="package-label col-md-2">{{ 'packages.forms.CREATE_COUNTRY' | translate }}:</label>
<select id="selectCountry" class="form-control-static col-md-2" ng-model="selectedCountryId" ng-change="showSelectPackages()">
<option ng-repeat="countryInfo in countries" value={{countryInfo.id}}>
{{countryInfo.name}}
</option>
</select>
</div>
<div id="edit-package-list" class="packages-countries row" ng-init="showSelectPackages()" ng-if="isCountrySelected(selectedCountryId)">
<label for="selectPackage" class="package-label col-md-2">{{'packages.forms.PACKAGE_SELECT' | translate}}:</label>
<select id="create-process-package-select"
ng-model="$parent.packageSelected"
ng-change="setCountryAndPackageSelected()"
ng-init="showSelectPackages()"
class="form-control-static col-md-3"
ng-options="packageInfo.name for packageInfo in packageList track by packageInfo.id">
</select>
</div>
<form ng-if="isPackageSelected()">
<products-by-categories-drag-drop action-type="edit"></products-by-categories-drag-drop>
</form>
</div>