forked from harness/harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added styling to delete page, split environment vars to separate page
- Loading branch information
1 parent
dfb7b88
commit 3bc5dea
Showing
5 changed files
with
82 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<header> | ||
<a class="logo float-left" href="/"></a> | ||
<a class="menu-item settings float-right" href="/profile"></a> | ||
<a class="menu-item users float-right" href="/users" ng-if="user.admin"></a> | ||
<a class="menu-item help float-right" href="http://readme.drone.io" target="_blank"></a> | ||
<a class="menu-item user-name float-right" href="/profile">{{ "+"+user.login }}</a> | ||
</header> | ||
|
||
<div class="toolbar"> | ||
|
||
<div class="breadcrumb" style="position:relative;top:0px;"> | ||
<a href="/{{ repo.full_name }}/edit" class="icon icon-home"></a> | ||
<a ng-href="/{{ repo.full_name }}">{{ repo.owner }} / {{ repo.name }}</a> | ||
</div> | ||
|
||
<div class="menu"> | ||
<a ng-href="/{{ repo.full_name }}/edit" class="nav-item settings float-right"></a> | ||
<button ng-click="watch(repo)" ng-if="!repo.starred" class="nav-item star float-right"></button> | ||
<button ng-click="unwatch(repo)" ng-if="repo.starred" class="nav-item unstar float-right"></button> | ||
</div> | ||
|
||
</div> | ||
<article> | ||
<section> | ||
<form> | ||
<ul> | ||
<li ng-repeat="(key, value) in repo.params"> | ||
<label>{{ key }}</label> | ||
<input type="text" ng-model="repo.params[key]"/> | ||
<button ng-click="deleteParam(key)">remove</button> | ||
</li> | ||
<li> | ||
<input type="text" ng-model="param.key" /> | ||
<input type="text" ng-model="param.value" /> | ||
<button ng-click="addParam(param)">add</button> | ||
</li> | ||
</ul> | ||
|
||
<button ng-click="save(repo)">Save</button> | ||
</form> | ||
</section> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters