KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aggregation_settings.twig 1.2KB

9 years ago
1234567891011121314151617181920
  1. {% extends "layout.twig" %}
  2. {% block title %}${ "Aggregation Settings" | translate("aggregator") }{% endblock %}
  3. {% block content %}
  4. <form id="aggregation_settings" class="split" action="{% admin "aggregation_settings" %}" method="post">
  5. <fieldset>
  6. <p>
  7. <label for="aggregate_every">${ "Check Feeds Every %s Minutes" | translate("aggregator") | format("<input class=\"text\" type=\"text\" name=\"aggregate_every\" value=\"" ~ site.aggregate_every | escape ~ "\" size=\"2\" id=\"aggregate_every\" class=\"center\" />") }</label>
  8. <input type="checkbox" class="checkbox" name="disable_aggregation"${ site.disable_aggregation | checked } /> ${ "disable" | translate("aggregator") }
  9. </p>
  10. <p class="buttons">
  11. <button type="submit" class="yay"><img src="$theme_url/images/icons/success.png" alt="success" />${ "Update" | translate }</button>
  12. </p>
  13. <input type="hidden" name="hash" value="$site.secure_hashkey" id="hash" />
  14. </fieldset>
  15. </form>
  16. {% endblock %}