{% extends 'generic/object.html' %}
{% load buttons %}
{% load custom_links %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{% block breadcrumbs %}
IRR Sources
{% endblock %}
{% block content %}
| Name |
{{ object.name }} |
| Slug |
{{ object.slug }} |
| URL |
{{ object.url }} |
| Sources |
{{ object.sources|placeholder }} |
| Enabled |
{% checkmark object.enabled %} |
| Description |
{{ object.description|placeholder }} |
| Cache TTL |
{{ object.cache_ttl|default:"Default"|placeholder }} seconds |
| Sync Interval |
{{ object.sync_interval }} minutes |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% render_table configs_table 'inc/table.html' %}
{% plugin_full_width_page object %}
{% endblock %}