Sha256: d1f2faa40018b6672b94383568f1d64db215f231867f8c947c0969076a1e9a01
Contents?: true
Size: 1.91 KB
Versions: 12
Compression:
Stored size: 1.91 KB
Contents
<div ng-if="error" class="alert alert-danger"> <p>The requested controller could not be found.</p> </div> <div ng-if="controller"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header"> {{ controller.display_name || (controller.name | resourceName) }} </h1> <p ng-bind-html="controller.description | markdown"></p> <p class="traits" ng-if="controller.traits.length > 0"> This resource is <readable-list repeat="trait in controller.traits"><a ui-sref="root.trait({version: apiVersion, trait: trait})">{{trait}}</a></readable-list>. </p> </div> </div> <div class="row actions-overview" ng-if="controller.actions.length"> <div class="col-lg-12"> <h2>Actions</h2> <div class="table-responsive"> <table class="table table-striped table-bordered"> <thead> <tr> <th>Name</th> <th>Route</th> <th>Description</th> </tr> </thead> <tbody> <tr ng-repeat="action in controller.actions"> <td class="action-overview-name"> <a ui-sref="root.action({action: action.name, controller: controllerName, version: apiVersion})">{{ action.name }}</a> </td> <td class="action-overview-url"> <url action="action"></url> </td> <td class="action-overview-description"> <p ng-bind-html="action.description | markdown"></p> </td> </tr> </tbody> </table> </div> </div> </div> <div ng-if="controller.media_type && controller.media_type.family != 'string'" ng-controller="TypeCtrl"> <ng-include src="'views/type/details.html'" /> </div> <div ng-if="controller.media_type && controller.media_type.family == 'string'"> <h2>Schema</h2> <p ><b>Internet Media-type: {{ controller.media_type.identifier }}</b></p> </div> </div>
Version data entries
12 entries across 12 versions & 1 rubygems