Skip to content
Snippets Groups Projects
ServicesCatalog.html 1.33 KiB
Newer Older
trantzas's avatar
trantzas committed
<div class="page-header">

	<div class="container-fluid">
		<div class="row">
			<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
				<h1>Catalogs</h1>
				<h3>View and manage service catalogs</h3>
				<a class="btn btn-success btn-lg" data-toggle="modal" ng-href="#!/service_catalog_add"> <i class="fa fa-user fa-2x pull-left"></i>&nbsp;&nbsp;Create New<br>Catalog</a>
				<br>
				<br>
				<table id="grid1" tr-ng-grid="" class="usersGrid" items="catalogs"  page-items="50"
					fields="['id', 'name', 'description', 'lastUpdate', 'version',  'lifecycleStatus' ]">
					<thead>
						<tr>
							<th field-name="id" display-name="Id" cell-width="5em"
								display-align="right"></th>

							<th field-name="lastUpdate" display-name="Last Update"></th>
							<th field-name="name" display-name="Name"></th>
							<th field-name="description" display-name="Description"></th>
							</th>
						</tr>
					</thead>
					<tbody>
						<tr>
							<td nowrap="nowrap">
								<a class="btn btn-danger" ng-click="deleteCatalog(gridItem, gridItem.id, gridItem.username, gridItem.name)"><i class="fa fa-trash-o "></i></a>
								<a class="btn btn-primary" ng-href="#!/service_catalog_edit/{{gridDisplayItem.id}}"><i class="fa fa-pencil-square-o "></i></a>							
								
							</td>
						</tr>
					</tbody>
				</table>

			</div>
		</div>
	</div>
</div>