{% extends "base.html" %} {% block title %}Rule Entries: {{ rule.name }}{% endblock %} {% block content %}

{{ rule.name }} - Entries

Description: {{ rule.description }}

Criteria: {{ rule.instruction }}

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

Feed Name: {{ rule.feed_name }}

Feed URL: {{ rule.url }}

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

Webpage URL: {{ rule.url }}

XPath: {{ rule.xpath }}

{% endif %}

Interval: {% set total_seconds = rule.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 %}

Back to Dashboard
{% if entries %} {% for entry in entries %}

{{ entry.title }}

Link: {{ entry.link }}

Published: {{ entry.pub_date }}

{% endfor %} {% else %}

No entries found for this rule.

{% endif %}
{% endblock %}