Skip to content

Commit

Permalink
show domain on larger screens
Browse files Browse the repository at this point in the history
  • Loading branch information
antedebaas committed Nov 10, 2024
1 parent dbbec9d commit af1bfaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/dmarc_reports/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{# <th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th> #}
<th class="w-1">{{ "Id"|trans }}</th>
<th>{{ "Messages"|trans }}</th>
{# <th>{{ "Domain"|trans }}</th> #}
<th class="d-none d-lg-table-cell">{{ "Domain"|trans }}</th>
<th class="d-none d-lg-table-cell">{{ "Date"|trans }}</th>
<th class="d-none d-lg-table-cell">{{ "Reporter"|trans }}</th>
<th>{{ "SPF"|trans }}</th>
Expand All @@ -29,7 +29,7 @@
{% if app.user in report.seen %}{% else %}<span class="badge bg-yellow"></span>{% endif %}
</td>
<td><span class="badge bg-blue me-1 text-white">{{ report.dmarc_records.count }}</span></td>
{# <td>{{ report.domain.fqdn }}</td> #}
<td class="d-none d-lg-table-cell">{{ report.domain.fqdn }}</td>
<td class="d-none d-lg-table-cell">{{ report.begintime|date("d-M-Y H:i:s") }}</td>
<td class="d-none d-lg-table-cell">{{ report.organisation }}</td>
{% set dkim_pass_count = 0 %}
Expand Down
4 changes: 2 additions & 2 deletions templates/smtptls_reports/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{# <th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th> #}
<th class="w-1">{{ "Id"|trans }}</th>
<th>{{ "Messages"|trans }}</th>
{# <th>{{ "Domain"|trans }}</th> #}
<th class="d-none d-lg-table-cell">{{ "Domain"|trans }}</th>
<th class="d-none d-lg-table-cell">{{ "Date"|trans }}</th>
<th class="d-none d-lg-table-cell">{{ "Reporter"|trans }}</th>
<th>{{ "Policy"|trans }}</th>
Expand All @@ -29,7 +29,7 @@
{% if app.user in report.seen %}{% else %}<span class="badge bg-yellow"></span>{% endif %}
</td>
<td><span class="badge bg-blue me-1 text-white">{{ report.smtptls_policies.count }}</span></td>
{# <td>{{ report.domain.fqdn }}</td> #}
<td class="d-none d-lg-table-cell">{{ report.domain.fqdn }}</td>
<td class="d-none d-lg-table-cell">{{ report.begintime|date("d-M-Y H:i:s") }}</td>
<td class="d-none d-lg-table-cell">{{ report.organisation }}</td>
{% set successfulcount = 0 %}
Expand Down

0 comments on commit af1bfaf

Please sign in to comment.