{% extends "assetcloud/pages/account/base.html" %} {% load i18n %} {% load renderform %} {% block css_files %} {% endblock %} {% block admin-content %}
{% csrf_token %} {{ form.non_field_errors }}
{{ form.subdomain }}.{{ domain_suffix }}
Sorry, this URL is not available. URL available! Enter a valid value (no spaces or special characters). {{ form.subdomain.errors }}
{{ form.welcome_text.errors }}
{{ form.logo.errors }} {{ form.logo }}

Maximum file size of {{ max_logo_image_size|filesizeformat }}. Image should be JPG, GIF or PNG.

{% for field in form.colour_fields %}
{{ field.label_tag }} {{ field.errors }} {{ field }}
{% endfor %}
{{ form.homepage_tags_json.errors }} {{ form.homepage_tags.errors }} {{ form.homepage_tags_json }}
    {% for tag in form.instance.homepage_tags.all %}{% include 'assetcloud/snippets/tag.html' %}{% endfor %}

Each tag you specify will generate a strip of matching assets on the homepage

{% endblock %} {% block page_scripts %} {% endblock %} {% block javascript %} $(function() { $('.color-input input').miniColors(); // Link to revert colors to default values $('#reset-colors').click(function(){ $('#id_header_background').miniColors('value', '{{ default_header_background }}'); $('#id_header_links').miniColors('value', '{{ default_header_links }}'); $('#id_header_links_active').miniColors('value', '{{ default_header_links_active }}'); return false; }); }); {% endblock %}