Back to Netbox

Rssfeed

netbox/templates/extras/dashboard/widgets/rssfeed.html

4.6.7595 B
Original Source

{% load i18n %} {% if feed and not feed.bozo %}

{% for entry in feed.entries %} {{ entry.title }} {{ entry.summary }}

{% empty %} {% trans "No content found" %} {% endfor %} {% elif isolated_deployment %} {% trans "This RSS feed requires an external connection. Check the ISOLATED_DEPLOYMENT setting." %} {% else %} {# There was an error retrieving/parsing the feed #} {% trans "There was a problem fetching the RSS feed" %}: {% if feed %} {{ feed.bozo_exception|escape }} ({% trans "HTTP" %} {{ feed.status }}) {% else %} {{ error }} {% endif %} {% endif %}