{% extends "base.html" %}
{% block title %}{{ action }}{% endblock %}
{% block pageheader %}{{ action }}{% endblock %}
{% block pagecontent %}
{% if bookmark.http_status != 200 and bookmark.http_status != 202 and bookmark.http_status != 304 %}
{% if bookmark.http_status == 404 %}
report_problem URL not found (404), broken/outdated link?
{% elif bookmark.http_status == 301 %}
report_problem HTTP status (301), moved permanently. Use button for new target
{% elif bookmark.http_status == 302 %}
report_problem HTTP status (302), moved temporarily. Use button for new target
{% elif bookmark.http_status == bookmark.HTTP_CONNECTIONERROR %}
report_problem Connection error, server might have been offline at the time of last edit
{% else %}
report_problem HTTP status {{ bookmark.http_status }}
{% endif %}
{% endif %}
{% if message %}
{{ message }}
{% endif %}
{% if formaction and formaction == 'edit' %}
{% endif %}
{% endblock %}