mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-05-22 09:16:47 +02:00
24 lines
708 B
HTML
24 lines
708 B
HTML
<div class="container" style="margin-top: 70px;">
|
|
<div class="list-group">
|
|
<div
|
|
class="list-group-item list-group-item-action"
|
|
ng-repeat="repo in repos"
|
|
>
|
|
<div class="d-flex mb-12 justify-content-between">
|
|
<h5 class="mb-1">{{ repo.full_name }}</h5>
|
|
<small>
|
|
{{ repo.private? "Private": "Public" }}
|
|
</small>
|
|
</div>
|
|
<p class="mb-1" ng-if="repo.description">{{ repo.description }}</p>
|
|
<div class="mb-1">
|
|
<a
|
|
class="btn btn-primary anonymize-btn"
|
|
href="/?githubRepository=https://github.com/{{ repo.full_name }}&id={{ repo.uuid }}"
|
|
>Anonymize</a
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|