Paul Van Eck e6026d2251 Add products UI base
This will add the user interface for managing/viewing products
for vendors.

Change-Id: I79859fe0a661dc8633786cf90b4b964ca0e99d64
Co-Authored-By: Andrey Pavlov <andrey-mp@yandex.ru>
2016-06-23 15:44:29 -07:00

17 lines
780 B
HTML

<h3>Distro Product</h3>
<div ng-show="ctrl.product" class="container-fluid">
<div class="row">
<div class="pull-left">
<div class="test-report">
<strong>Name:</strong> {{ctrl.product.name}}<br />
<strong>Product ID:</strong> {{ctrl.id}}<br />
<strong>Description:</strong> {{ctrl.product.description}}<br />
<strong>Publicity:</strong> {{ctrl.product.public ? 'Public' : 'Private'}}<br />
<strong>Vendor Name:</strong> {{ctrl.vendor.name}}<br />
<strong>Vendor Description:</strong> {{ctrl.vendor.description || '-'}}<br />
</div>
</div>
<div ng-include src="'components/products/partials/management.html'"></div>
</div>
</div>