Skip to content

Commit

Permalink
Re-arrange columns
Browse files Browse the repository at this point in the history
closes #8
closes #6
  • Loading branch information
fliepeltje committed Aug 10, 2023
1 parent 796a7a7 commit a7daf9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions web/macros.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
{% macro render_table_row(repo) %}
<tr>
<td><a href="{{repo.url}}" target="_blank">{{ repo.name }}</a></td>
<td class="criteria-{{repo.license_check.1}}">{{repo.license_check.0}}</td>
<td class="criteria-{{repo.archived_check.1}}">{{repo.archived_check.0}}</td>
<td class="criteria-{{repo.fork_check.1}}">{{repo.fork_check.0}}</td>
<td class="criteria-{{repo.visibility_check.1}}">{{repo.visibility_check.0}}</td>
<td class="criteria-{{repo.license_check.1}}">{{repo.license_check.0}}</td>
<td class="criteria-{{repo.topics_check.1}}">{{repo.topics_check.0}}</td>
<td class="criteria-{{repo.description_check.1}}">{{repo.description_check.0}}</td>
<td class="criteria-{{repo.last_update_check.1}}">{{repo.last_update_check.0}}</td>
Expand All @@ -25,9 +26,10 @@
<thead>
<tr>
<th>Repository</th>
<th>License</th>
<th>Archived</th>
<th>Fork</th>
<th>Visibility</th>
<th>License</th>
<th>Topics</th>
<th>Has description</th>
<th>Last Update</th>
Expand Down

0 comments on commit a7daf9d

Please sign in to comment.