Skip to content

Commit

Permalink
update vendor display
Browse files Browse the repository at this point in the history
  • Loading branch information
LoRexxar committed Dec 30, 2021
1 parent 1ad0ed7 commit d645c9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions templates/dashboard/vendors/vendor_detail.html
Expand Up @@ -18,6 +18,7 @@ <h3 class="box-title">Search Result for {{ vendor_name }}</h3>
<th>Name</th>
<th>Version</th>
<th>Language</th>
<th>Source</th>
<th>Ext</th>
</tr>
{% for vendor in vendors %}
Expand All @@ -28,6 +29,7 @@ <h3 class="box-title">Search Result for {{ vendor_name }}</h3>
<td><a href="{% url 'dashboard:vendor_details'%}?vendorname={{ vendor.name }}">{{ vendor.name }}</a></td>
<td>{{ vendor.version }}</td>
<td>{{ vendor.language }}</td>
<td>{{ vendor.source }}</td>
<td>{{ vendor.ext }}</td>
</tr>
{% endfor %}
Expand Down
2 changes: 2 additions & 0 deletions templates/dashboard/vendors/vendors_list.html
Expand Up @@ -52,6 +52,7 @@ <h3 class="box-title">Vendors List</h3>
<th>Name</th>
<th>Version</th>
<th>Language</th>
<th>Source</th>
<th>Ext</th>
</tr>
{% for vendor in vendors %}
Expand All @@ -62,6 +63,7 @@ <h3 class="box-title">Vendors List</h3>
<td><a href="{% url 'dashboard:vendor_details'%}?vendorname={{ vendor.name }}">{{ vendor.name }}</a></td>
<td>{{ vendor.version }}</td>
<td>{{ vendor.language }}</td>
<td>{{ vendor.source }}</td>
<td>{{ vendor.ext }}</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit d645c9c

Please sign in to comment.