1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 22:05:09 +01:00

Better error message on 301, with hint on using the button

This commit is contained in:
2017-08-14 14:24:12 +02:00
parent 8077499eae
commit b85ee43cc7

View File

@@ -10,6 +10,8 @@
<span class="{{ theme.ERRORMESSAGE_TEXT }}"> <span class="{{ theme.ERRORMESSAGE_TEXT }}">
{% if bookmark.http_status == 404 %} {% if bookmark.http_status == 404 %}
<i class="material-icons">report_problem</i>&nbsp;&nbsp;URL not found (404), broken/outdated link? <i class="material-icons">report_problem</i>&nbsp;&nbsp;URL not found (404), broken/outdated link?
{% elif bookmark.http_status == 301 %}
<i class="material-icons">report_problem</i>&nbsp;&nbsp;HTTP status (301), moved permanently. Use button for new target
{% elif bookmark.http_status == 302 %} {% elif bookmark.http_status == 302 %}
<i class="material-icons">report_problem</i>&nbsp;&nbsp;HTTP status (302), moved temporarily. Use button for new target <i class="material-icons">report_problem</i>&nbsp;&nbsp;HTTP status (302), moved temporarily. Use button for new target
{% elif bookmark.http_status == bookmark.HTTP_CONNECTIONERROR %} {% elif bookmark.http_status == bookmark.HTTP_CONNECTIONERROR %}