{% load buttons %}
{% load helpers %}
{% load perms %}
{% load i18n %}
{# Core script list content - used by both full page and embedded views #}
{% for module in script_modules %}
{% include 'inc/sync_warning.html' with object=module %}
{% blocktrans with module=module.name %}Could not load scripts from module {{ module }}{% endblocktrans %}
{% endif %}
{% endwith %}
{% empty %}
{% trans "No Scripts Found" %}
{% if perms.extras.add_scriptmodule and not embedded %}
{% url 'extras:scriptmodule_add' as create_script_url %}
{% blocktrans trimmed %}
Get started by creating a script from an uploaded file or data source.
{% endblocktrans %}
{% endif %}