{% extends "master.html" %} {% from "_formhelpers.html" import render_field, render_switch %} {% block title %}New Host Category URL{% endblock %} {%block tag %}home{% endblock %} {% block content %}
Add host category URL
{{ render_field(form.url, after='URL (rsync, https, http) pointing to the top directory') }} {%- if is_admin -%} {{ render_switch(form.private, after='A private URL will not show up in the mirrorlist/metalink') }} {%- endif -%}

{{ form.csrf_token }}

{% endblock %}