{% extends "base.html" %}
{% block title %}Overlay {{ overlay.name }} | left4me{% endblock %}
{% block extra_head %}{% include "_editor_assets.html" %}{% endblock %}
{% block content %}
{% set can_edit = g.user.admin or (overlay.type in ['workshop', 'script', 'files'] and overlay.user_id == g.user.id) %}
{% set is_files_overlay = overlay.type == 'files' %}
{% set files_can_edit = is_files_overlay and can_edit %}
Drop files or folders onto a folder row to upload. Drag rows inside the tree to move them. Empty — drop files here, or click "+ new file" on this row. No files yet — build this overlay to populate it. Not used by any blueprint.Overlay: {{ overlay.name }}
{% if overlay.type == 'script' %}
Script
{% if can_edit %}
{% else %}
{{ overlay.script or "" }}
{% endif %}
{% include "_overlay_build_status.html" %}
{% endif %}
{% if overlay.type == 'workshop' %}
Workshop items
{% if can_edit and not latest_build_is_running %}
{% endif %}
Files
{% if files_can_edit %}
Used by
{% if using_blueprints %}
{% for blueprint in using_blueprints %}
{% else %}