Skip to content

Commit

Permalink
More w3c minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniviga committed Oct 27, 2023
1 parent 98fed02 commit 86589ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ram/portal/templates/cards/company.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{% if d.item.logo %}
<tr>
<th class="w-33" scope="row">Logo</th>
<td><img class="logo" src="{{ d.item.logo.url }}" /></td>
<td><img class="logo" src="{{ d.item.logo.url }}" alt="{{ d.item.name }} logo"></td>
</tr>
{% endif %}
<tr>
Expand All @@ -27,7 +27,7 @@
</tr>
<tr>
<th class="w-33" scope="row">Country</th>
<td>{{ d.item.country.name }} <img src="{{ d.item.country.flag }}" alt="{{ d.item.country }}" />
<td>{{ d.item.country.name }} <img src="{{ d.item.country.flag }}" alt="{{ d.item.country }}">
</tr>
{% if d.item.freelance %}
<tr>
Expand Down
2 changes: 1 addition & 1 deletion ram/portal/templates/cards/manufacturer.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{% if d.item.logo %}
<tr>
<th class="w-33" scope="row">Logo</th>
<td><img class="logo" src="{{ d.item.logo.url }}" /></td>
<td><img class="logo" src="{{ d.item.logo.url }}" alt="{{ d.item.name }} logo"></td>
</tr>
{% endif %}
{% if d.item.website %}
Expand Down

0 comments on commit 86589ad

Please sign in to comment.