{% extends "base.html" %} {% load i18n %} {% load djangui_tags %} {% block extra_style %} {% endblock extra_style %} {% block left_sidebar_content %}
{% for group_id, group in djangui_scripts.iteritems %} {# check the user has access to the group#} {% with group_show=group.group|valid_user:request.user %} {% if group_show != 'hide' %}

{{ group.group.group_description }}

{% for script in group.scripts %} {% with script_show=script|valid_user:request.user %} {% if script_show != 'hide' %}

{{ script.script_name }}

{{ script.script_description }}

{% endif %} {% endwith %} {% endfor %}
{% endif %} {% endwith %} {% endfor %}
{% endblock %} {% block center_content %}
{% csrf_token %}
{% endblock center_content %} {% block right_sidebar_content %}
{% if request.user.is_authenticated %}
{% trans "Id" %} {% trans "Name" %} {% trans "Status" %} {% trans "Submitted" %}
{% endif %}
{% trans "Id" %} {% trans "Name" %} {% trans "Status" %} {% trans "Submitted" %}
{% endblock right_sidebar_content %} {% block inline_js %} {{ block.super }} {% endblock inline_js %}