mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-03 07:06:30 +00:00
18 lines
No EOL
732 B
HTML
18 lines
No EOL
732 B
HTML
<div class="breadcrumb">
|
|
<a href="/{{ repo.full_name }}/edit" class="icon icon-home">
|
|
<i class="material-icons md-18">home</i>
|
|
</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" ng-if="repo.permissions.pull">
|
|
<i class="material-icons md-18">edit</i>
|
|
</a>
|
|
<button ng-click="watch(repo)" ng-if="!repo.starred && user" class="nav-item star float-right">
|
|
<i class="material-icons md-18">star_border</i>
|
|
</button>
|
|
<button ng-click="unwatch(repo)" ng-if="repo.starred && user" class="nav-item unstar float-right">
|
|
<i class="material-icons md-18">star</i>
|
|
</button>
|
|
</div> |