Team Administration UI Stub

Administration stub for the team administration interface.

Change-Id: I06849ae57146b8d721ba002724905d2c44ac83f4
This commit is contained in:
Michael Krotscheck 2014-07-23 17:24:33 -07:00
parent 8cf3d9ff4f
commit 2979984b03
4 changed files with 69 additions and 0 deletions

View File

@ -62,5 +62,13 @@ angular.module('sb.admin', [ 'sb.services', 'sb.templates', 'sb.util',
).$promise;
}
}
})
.state('admin.team', {
url: '/team',
templateUrl: 'app/admin/template/team.html'
})
.state('admin.team_edit', {
url: '/team/:id',
templateUrl: 'app/admin/template/team_edit.html'
});
});

View File

@ -19,4 +19,9 @@
<i class="fa fa-sb-project-group fa-lg"></i>
</a>
</li>
<li active-path="^\/admin/team.*">
<a href="#!/admin/team" title="Teams">
<i class="fa fa-sb-team fa-lg"></i>
</a>
</li>
</ul>

View File

@ -0,0 +1,28 @@
<!--
~ Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may
~ not use this file except in compliance with the License. You may obtain
~ a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
~ License for the specific language governing permissions and limitations
~ under the License.
-->
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1><i class="fa fa-sb-team"></i> Teams</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>This feature has not yet been implemented.</p>
</div>
</div>
</div>

View File

@ -0,0 +1,28 @@
<!--
~ Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may
~ not use this file except in compliance with the License. You may obtain
~ a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
~ License for the specific language governing permissions and limitations
~ under the License.
-->
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1><i class="fa fa-sb-team"></i> Edit Team</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>This feature has not yet been implemented.</p>
</div>
</div>
</div>