Skip to content

Commit d29f55b

Browse files
committed
feat: show message for no results
1 parent ff59aa6 commit d29f55b

File tree

1 file changed

+50
-46
lines changed

1 file changed

+50
-46
lines changed

linkcheck/templates/linkcheck/report.html

+50-46
Original file line numberDiff line numberDiff line change
@@ -131,54 +131,58 @@
131131
<br />
132132
</div>
133133

134-
{% for content_type in content_types_list %}
135-
<table class="objecttype">
136-
<tr class="type-header"><td style='padding: 0;'><h2>{{content_type.content_type|get_verbose_name_plural}}</h2>
137-
{% for object in content_type.object_list %}
138-
<div class="object">
139-
<h3 style='display: inline; padding-left: 5px;'>{{report_type}} in '{{object.object}}'</h3>&nbsp;&nbsp;
140-
<a href='{{object.object.get_absolute_url}}' style="text-decoration: underline;">{% blocktrans with content_type_name=content_type.content_type.name %}View {{ content_type_name }}{% endblocktrans %}</a>&nbsp;&nbsp;
141-
{% if object.admin_url %}<a href='{{ object.admin_url }}' style="text-decoration: underline;">{% blocktrans with content_type_name=content_type.content_type.name %}Edit {{ content_type_name }}{% endblocktrans %}</a>{% endif %}
142-
<table class="links">
143-
<th style='width: 40%;'>{% translate "Destination" %}</th>
144-
<th style='width: 20%;'>{% translate "Linked Text" %}</th>
145-
<th style='width: 20%;'>{% translate "Field to edit" %}</th>
146-
<th style='width: 20%;'>{% translate "Status" %}</th>
147-
<th></th>
148-
<th></th>
149-
{% for link in object.link_list %}
150-
<tr id="link{{ link.id }}">
151-
<td><a href='{{link.url}}' target='_blank'>{{link.display_url}}</a></td>
152-
<td>{% if link.text == "empty" %}none{% else %}"{{link.text}}"{% endif %}</td>
153-
<td>{{link.field}}</td>
154-
<td style='font-weight: bold; color: {{link.url.colour}};' class="link_message">{{link.url.message}}</td>
155-
<td class="actioncell">
156-
{% if not link.url.status %}
157-
<form class="recheck" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}recheck={{ link.id }}"><input type="submit" value="{% translate "Recheck" %}" /></form>
158-
{% endif %}
159-
</td>
160-
<td class="actioncell">
161-
{% if not link.url.status %}
162-
{% if link.url.external %}
163-
{% if not link.ignore %}
164-
<form class="ignore" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}ignore={{ link.id }}"><input type="submit" value="{% translate "Ignore" %}" /></form>
165-
{% else %}
166-
<form class="unignore" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}unignore={{ link.id }}"><input type="submit" value="{% translate "Unignore" %}" /></form>
134+
{% if content_types_list %}
135+
{% for content_type in content_types_list %}
136+
<table class="objecttype">
137+
<tr class="type-header"><td style='padding: 0;'><h2>{{content_type.content_type|get_verbose_name_plural}}</h2>
138+
{% for object in content_type.object_list %}
139+
<div class="object">
140+
<h3 style='display: inline; padding-left: 5px;'>{{report_type}} in '{{object.object}}'</h3>&nbsp;&nbsp;
141+
<a href='{{object.object.get_absolute_url}}' style="text-decoration: underline;">{% blocktrans with content_type_name=content_type.content_type.name %}View {{ content_type_name }}{% endblocktrans %}</a>&nbsp;&nbsp;
142+
{% if object.admin_url %}<a href='{{ object.admin_url }}' style="text-decoration: underline;">{% blocktrans with content_type_name=content_type.content_type.name %}Edit {{ content_type_name }}{% endblocktrans %}</a>{% endif %}
143+
<table class="links">
144+
<th style='width: 40%;'>{% translate "Destination" %}</th>
145+
<th style='width: 20%;'>{% translate "Linked Text" %}</th>
146+
<th style='width: 20%;'>{% translate "Field to edit" %}</th>
147+
<th style='width: 20%;'>{% translate "Status" %}</th>
148+
<th></th>
149+
<th></th>
150+
{% for link in object.link_list %}
151+
<tr id="link{{ link.id }}">
152+
<td><a href='{{link.url}}' target='_blank'>{{link.display_url}}</a></td>
153+
<td>{% if link.text == "empty" %}none{% else %}"{{link.text}}"{% endif %}</td>
154+
<td>{{link.field}}</td>
155+
<td style='font-weight: bold; color: {{link.url.colour}};' class="link_message">{{link.url.message}}</td>
156+
<td class="actioncell">
157+
{% if not link.url.status %}
158+
<form class="recheck" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}recheck={{ link.id }}"><input type="submit" value="{% translate "Recheck" %}" /></form>
159+
{% endif %}
160+
</td>
161+
<td class="actioncell">
162+
{% if not link.url.status %}
163+
{% if link.url.external %}
164+
{% if not link.ignore %}
165+
<form class="ignore" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}ignore={{ link.id }}"><input type="submit" value="{% translate "Ignore" %}" /></form>
166+
{% else %}
167+
<form class="unignore" action="{{ request.META.PATH_INFO }}?{% if request.META.QUERY_STRING %}{{ request.META.QUERY_STRING }}&{% else %}{% endif %}unignore={{ link.id }}"><input type="submit" value="{% translate "Unignore" %}" /></form>
168+
{% endif %}
167169
{% endif %}
168170
{% endif %}
169-
{% endif %}
170-
</td>
171-
</tr>
172-
{% if link.url.redirect_to %}
173-
<tr><td colspan="6">R{% translate "Redirects to" %}: <a href="{{ link.url.redirect_to }}" target="_blank">{{ link.url.redirect_to }}</a></td></tr>
174-
{% endif %}
175-
{% endfor %}
176-
</table>
177-
</div>
178-
{% endfor %}
179-
</td></tr>
180-
</table>
181-
{% endfor %}
171+
</td>
172+
</tr>
173+
{% if link.url.redirect_to %}
174+
<tr><td colspan="6">R{% translate "Redirects to" %}: <a href="{{ link.url.redirect_to }}" target="_blank">{{ link.url.redirect_to }}</a></td></tr>
175+
{% endif %}
176+
{% endfor %}
177+
</table>
178+
</div>
179+
{% endfor %}
180+
</td></tr>
181+
</table>
182+
{% endfor %}
183+
{% else %}
184+
<p>No results</p>
185+
{% endif %}
182186
{% csrf_token %}
183187
{% if content_types_list %}
184188
{% include "linkcheck/paginator.html" %}

0 commit comments

Comments
 (0)