{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block content %}
{% if items %}
Title: {{ item.name }} Description: {{ item.description }} Feed Name: {{ item.feed_name }} Feed URL: {{ item.url or item.url }} Webpage URL: {{ item.url or item.webpage_url }} XPath: {{ item.xpath }} 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 }}