{% extends 'base.html' %} {% block header %}
{% block title %}Manage site assets{% endblock %}
{% endblock %} {% block content %}
Icons
{% if icon_storage|length > 0 %} {% for icon in icons %} {% endfor %}
If there are icons above that won't load, the file itself may be changed or removed

Delete links to missing icons from database

{% else %}
The database does not contain any moved/deleted icons!
{% endif %} {% if icon_storage|length > 0 %} {% for i in icon_storage %} {% endfor %}
These icons are not linked to any particular member but were found in the icons folder Delete files in the icons folder that have no link in the database
{% else %}
There are no images in the icons folder without a database link!
{% endif %}
Blinkies

Not implemented yet (sorry!)

Stamps

Not implemented yet (sorry!)


Upload Images

Upload images for use in pages and custom sections. Just right click, copy image URL, then use it in the HTML however you like. You can use style tags to customize how the images look/behave on your page, just be careful not to use class or id selectors that already exist (or do, if you are wanting to overwrite their behaviour!). We will make a list of in-use class and ids here, soon.

{% for image in images %}

{% set imgurl = url_for('static', filename='misc/'+image) %} Copy Image URLDelete
{% endfor %}
{% endblock %}