{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %} {% if items %}
{% for item in items %}
× ×

{{ item.name }}

View Entries

Title: {{ item.name }}

Description: {{ item.description }}

{% if item.data_source == 'RSS' %}

Feed Name: {{ item.feed_name }}

Feed URL: {{ item.url or item.url }}

{% elif item.data_source == 'webpage' %}

Webpage URL: {{ item.url or item.webpage_url }}

XPath: {{ item.xpath }}

{% endif %}

Interval: {% set total_seconds = item.polling_interval %} {% set days = total_seconds // 86400 %} {% set hours = (total_seconds % 86400) // 3600 %} {% set minutes = (total_seconds % 3600) // 60 %} {% set seconds = total_seconds % 60 %} {% if days %}{{ days }} day{% if days != 1 %}s{% endif %}{% endif %} {% if hours %} {{ hours }} hour{% if hours != 1 %}s{% endif %}{% endif %} {% if minutes %} {{ minutes }} minute{% if minutes != 1 %}s{% endif %}{% endif %} {% if seconds or total_seconds == 0 %} {{ seconds }} second{% if seconds != 1 %}s{% endif %}{% endif %}

Criteria: {{ item.instruction }}

{% endfor %}
{% endif %}

Add a Monitoring Item

{% if items %} × {% endif %}



:
:
:

{% if items %}
+
{% endif %} {% endblock %}