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