mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-07-06 21:57:57 +02:00
first version of the exploration of repositories
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user