|
1 | 1 | {% extends "scanpipe/base.html" %} |
2 | 2 |
|
3 | 3 | {% block content %} |
4 | | - <div id="content-header" class="container is-max-desktop mb-3"> |
5 | | - {% include 'scanpipe/includes/navbar_header.html' %} |
6 | | - <section class="mx-5"> |
7 | | - <div class="is-flex is-justify-content-space-between"> |
8 | | - {% include 'scanpipe/includes/breadcrumb.html' with linked_project=True %} |
9 | | - {% include 'scanpipe/includes/search_field.html' with extra_class="is-small" %} |
10 | | - </div> |
11 | | - {% include 'scanpipe/includes/pagination_header.html' with verbose_name="Packages" %} |
12 | | - {% include 'scanpipe/includes/filters_breadcrumb.html' with filterset=filter only %} |
13 | | - </section> |
14 | | - </div> |
| 4 | +<div id="content-header" class="container is-max-desktop mb-3"> |
| 5 | + {% include 'scanpipe/includes/navbar_header.html' %} |
| 6 | + <section class="mx-5"> |
| 7 | + <div class="is-flex is-justify-content-space-between"> |
| 8 | + {% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Dependencies" %} |
| 9 | + {% include 'scanpipe/includes/search_field.html' with extra_class="is-small" %} |
| 10 | + </div> |
| 11 | + {% include 'scanpipe/includes/pagination_header.html' %} |
| 12 | + {% include 'scanpipe/includes/filters_breadcrumb.html' with filterset=filter only %} |
| 13 | + </section> |
| 14 | +</div> |
15 | 15 |
|
16 | 16 | <div class="container is-fluid mb-3"> |
17 | 17 | <div class="table-container"> |
18 | 18 | <table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth"> |
19 | | - <thead> |
20 | | - <tr> |
21 | | - <th>Package URL</th> |
22 | | - <th>Dependency type</th> |
23 | | - <th>Extracted requirement</th> |
24 | | - <th>Dependency scope</th> |
25 | | - <th>Is runtime</th> |
26 | | - <th>Is optional</th> |
27 | | - <th>Is resolved</th> |
28 | | - <th>For package</th> |
29 | | - <th>Datafile resource</th> |
30 | | - <th>Datasource ID</th> |
31 | | - </tr> |
32 | | - </thead> |
| 19 | + {% include 'scanpipe/includes/list_view_thead.html' %} |
33 | 20 | <tbody> |
34 | 21 | {% for dependency in object_list %} |
35 | 22 | <tr class="break-word"> |
|
0 commit comments