{% extends "base.html" %}{% block title %}Erstelle Arbeitsblatt{% endblock %}{% block content %}


{% block header %} RATs zur Vorlesung {{title}} {% endblock %}


Rot: Das Rat kann nicht automatisch gestellt werden, da nicht alle notwendigen Konzepte in der Vorlesung behandelt werden
Grün: Das Rat kann ab einem bestimmten Zeitpunkt automatisch gestellt werden
Die Reihenfolge in der die zum Arbeitsblatt hinzugefügten RATs gestellt werden lässt sich per drag-and-drop festlegen.

{{form.title_id}}

Verfügbare Rats

{% set ns = namespace(found=false) %} {% for rat in rats %} {% if not rat.id in ordered_rat_ids %} {% set ns.rat_all_comments = (rat.comments | list) %} {% for answer in rat.rat_answers %} {% set ns.rat_all_comments = ns.rat_all_comments + (answer.comments | list) %} {% endfor %} {% if user.user_rights >2 %} {% endif %} {% include '/Rats/table_columns_to_include/preview_column.html' %} {% include '/Rats/table_columns_to_include/acceptance_column.html' %} {% endif %} {% endfor %}
ID Zum Arbeitsblatt hinzufügen Themen Konzepte Vorschau Freigaben
Aktzeptiert/Abgelehnt
Aktiv ab Vorlesung Nr.
{% if unlocked_dict[rat.id|string]["status"]| int < 9999 %} {% else %} {% endif %} {% if rat.belongs_to_placement_test_nr != -1 %} Placement Test {% endif %} {{ rat.id }} {% if rat.subjects_and_conceptss|length >=1 %}
    {% set ns.written_subjects = [] %} {% for subject1 in rat.subjects_and_conceptss %} {% if (subject1.subject in ns.written_subjects ) %} {% else %}
  1. {{ subject1.subject }}
  2. {% set _ = ns.written_subjects.append(subject1.subject) %} {% endif %} {% endfor %}
{% endif %}
{% if rat.subjects_and_conceptss|length >=1 %}
    {% set ns.written_concepts = [] %} {% for subject1 in rat.subjects_and_conceptss %} {% if (subject1.concept in ns.written_concepts ) %} {% else %}
  1. {% if subject1.id in unlocked_dict[rat.id|string]["unlocked"] %} {{ subject1.concept }} {% else %} {{ subject1.concept }} {% endif %}
  2. {% set _ = ns.written_concepts.append(subject1.concept) %} {% endif %} {% endfor %}
{% endif %}
{% if unlocked_dict[rat.id|string]["status"]| int < 9999 %} {{ unlocked_dict[rat.id|string]["status"] }} {% else %} - {% endif %}

Ausgewählte Rats

{% set ns = namespace(found=false) %} {% for rat in rats %} {% if rat.id in ordered_rat_ids %} {% set ns.rat_all_comments = (rat.comments | list) %} {% for answer in rat.rat_answers %} {% set ns.rat_all_comments = ns.rat_all_comments + (answer.comments | list) %} {% endfor %} {% if user.user_rights >2 %} {% endif %} {% include '/Rats/table_columns_to_include/preview_column.html' %} {% include '/Rats/table_columns_to_include/acceptance_column.html' %} {% endif %} {% endfor %}
ID Zum Arbeitsblatt hinzufügen Themen Konzepte Vorschau Freigaben
Aktzeptiert/Abgelehnt
Aktiv ab Vorlesung Nr.
{% if unlocked_dict[rat.id|string]["status"]| int < 9999 %} {% else %} {% endif %} {% if rat.belongs_to_placement_test_nr != -1 %} Placement Test {% endif %} {{ rat.id }}

{% if rat.subjects_and_conceptss|length >=1 %}
    {% set ns.written_subjects = [] %} {% for subject1 in rat.subjects_and_conceptss %} {% if (subject1.subject in ns.written_subjects ) %} {% else %}
  1. {{ subject1.subject }}
  2. {% set _ = ns.written_subjects.append(subject1.subject) %} {% endif %} {% endfor %}
{% endif %}
{% if rat.subjects_and_conceptss|length >=1 %}
    {% set ns.written_concepts = [] %} {% for subject1 in rat.subjects_and_conceptss %} {% if (subject1.concept in ns.written_concepts ) %} {% else %}
  1. {% if subject1.id in unlocked_dict[rat.id|string]["unlocked"] %} {{ subject1.concept }} {% else %} {{ subject1.concept }} {% endif %}
  2. {% set _ = ns.written_concepts.append(subject1.concept) %} {% endif %} {% endfor %}
{% endif %}
{% if unlocked_dict[rat.id|string]["status"]| int < 9999 %} {{ unlocked_dict[rat.id|string]["status"] }} {% else %} - {% endif %}




{% endblock %} {% block scripts %} {% endblock %}