diff --git a/biscuit/apps/untis/admin.py b/biscuit/apps/untis/admin.py
deleted file mode 100755
index 8c38f3f3dad51e4585f3984282c2a4bec5349c1e..0000000000000000000000000000000000000000
--- a/biscuit/apps/untis/admin.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from django.contrib import admin
-
-# Register your models here.
diff --git a/biscuit/apps/untis/parse.py b/biscuit/apps/untis/parse.py
new file mode 100755
index 0000000000000000000000000000000000000000..9c7b7cd5a3bf4e31fb82af615b8937ca3bf3472e
--- /dev/null
+++ b/biscuit/apps/untis/parse.py
@@ -0,0 +1,273 @@
+from django.conf import settings
+
+
+class Lesson(object):
+    def __init__(self):
+        self.filled = False
+        self.id = None
+        self.elements = []
+        self.times = []
+
+    def add_element(self, teacher, subject, rooms=[], classes=[]):
+        el = LessonElement()
+        el.create(teacher, subject, rooms, classes)
+        self.elements.append(el)
+
+    def add_time(self, day, hour, rooms=[]):
+        el = LessonTime()
+        el.create(day, hour, rooms)
+        self.times.append(el)
+
+    def create(self, db_obj):
+        self.filled = True
+
+
+class LessonElement(object):
+    def __init__(self):
+        self.teacher = None
+        self.subject = None
+        self.rooms = []
+        self.classes = []
+
+    def create(self, teacher, subject, rooms=[], classes=[]):
+        self.teacher = teacher
+        self.subject = subject
+        self.rooms = rooms
+        self.classes = classes
+
+
+class LessonTime(object):
+    def __init__(self):
+        self.hour = None
+        self.day = None
+        self.rooms = []
+
+    def create(self, day, hour, rooms=[]):
+        self.day = day
+        self.hour = hour
+        self.rooms = rooms
+
+
+from .api import *
+
+
+def clean_array(a, conv=None):
+    b = []
+    for el in a:
+        if el != '' and el != "0":
+            if conv is not None:
+                el = conv(el)
+            b.append(el)
+    return b
+
+
+def untis_split(s, conv=None):
+    return clean_array(s.split(";"), conv=conv)
+
+
+def parse():
+    odrive = {
+        "teachers": get_all_teachers(),
+        "rooms": get_all_rooms(),
+        "classes": get_all_classes(),
+        "subjects": get_all_subjects()
+    }
+
+    drive = {
+        "teachers": {},
+        "rooms": {},
+        "classes": {},
+        "subjects": {}
+    }
+    for key, value in odrive.items():
+        for el in value:
+            id = el.id
+            drive[key][id] = el
+
+    print(drive)
+
+    lessons = []
+    raw_lessons = get_raw_lessons()
+
+    for raw_lesson in raw_lessons:
+        # print("[RAW LESSON]")
+        # print("LESSON_ID      | ", raw_lesson.lesson_id)
+        # print("LessonElement1 | ", raw_lesson.lessonelement1)
+        # print("Lesson_TT      | ", raw_lesson.lesson_tt)
+
+        if raw_lesson.lesson_tt and raw_lesson.lessonelement1:
+            # Create object
+            lesson_obj = Lesson()
+
+            # Split data (,)
+            lesson_id = raw_lesson.lesson_id
+            raw_lesson_data = raw_lesson.lessonelement1.split(",")
+            raw_time_data = raw_lesson.lesson_tt.split(",")
+
+            rtd2 = []
+            for el in raw_time_data:
+                rtd2.append(el.split("~"))
+
+            # print(rtd2)
+
+            for el in rtd2:
+                day = int(el[1])
+                hour = int(el[2])
+                room_ids = untis_split(el[3], conv=int)
+
+                rooms = []
+                for room_id in room_ids:
+                    r = drive["rooms"][room_id]
+                    rooms.append(r)
+
+                lesson_obj.add_time(day, hour, rooms)
+
+            # print(raw_lesson_data)
+            # print(raw_time_data)
+
+            # Split data more (~)
+            rld2 = []
+            for el in raw_lesson_data:
+                rld2.append(el.split("~"))
+
+            # print(rld2)
+
+            for el in rld2:
+                teacher_id = int(el[0])
+                subject_id = int(el[2])
+                room_ids = untis_split(el[4], int)
+                class_ids = untis_split(el[17], conv=int)
+                # print("TEACHER – ", teacher_id, "; SUBJECT – ", subject_id, "; ROOMS – ", room_ids, "; CLASSES – ",
+                #       class_ids)
+
+                if teacher_id != 0:
+                    teacher = drive["teachers"][teacher_id]
+                else:
+                    teacher = None
+
+                if subject_id != 0:
+                    subject = drive["subjects"][subject_id]
+                else:
+                    subject = None
+
+                rooms = []
+                for room_id in room_ids:
+                    r = drive["rooms"][room_id]
+                    rooms.append(r)
+
+                classes = []
+                for class_id in class_ids:
+                    c = drive["classes"][class_id]
+                    classes.append(c)
+
+                # print("TEACHER – ", teacher, "; SUBJECT – ", subject, "; ROOMS – ", rooms,
+                #       "; CLASSES – ", classes)
+
+                lesson_obj.add_element(teacher, subject, rooms, classes)
+
+                # print("DAY – ", day, "; HOUR – ", hour, "; ROOMS – ", room_ids)
+
+            lessons.append(lesson_obj)
+
+    return lessons
+
+
+TYPE_TEACHER = 0
+TYPE_ROOM = 1
+TYPE_CLASS = 2
+
+
+class LessonContainer(object):
+    """
+    Needed for Django template because template language does not support dictionaries
+    Saves the time object and the lesson elements
+    """
+
+    def __init__(self, ):
+        self.time = None
+        self.elements = []
+
+    def set_time(self, time):
+        self.time = time
+
+    def append(self, element):
+        self.elements.append(element)
+
+
+class LessonElementContainer(object):
+    """
+    Needed for Django template because template language does not support dictionaries
+    Saves the lesson element object and the room (from time object)
+    """
+
+    def __init__(self, element, room):
+        self.element = element
+        self.room = room
+
+
+def get_plan(type, id):
+    """ Generates a plan for type (TYPE_TEACHE, TYPE_CLASS, TYPE_ROOM) and a id of the teacher (class, room)"""
+
+    # Get parsed lessons
+    lessons = parse()
+
+    # Init plan array
+    plan = []
+
+    # Fill plan array with LessonContainers (show upside), WIDTH and HEIGHT are defined by Django settings
+    for hour_idx in range(settings.TIMETABLE_HEIGHT):
+        plan.append([])
+        for day_idx in range(settings.TIMETABLE_WIDTH):
+            plan[hour_idx].append(LessonContainer())
+
+    # Fill plan with lessons
+    for lesson in lessons:
+        for i, element in enumerate(lesson.elements):
+            # Check if the lesson element is important for that plan (look by type and id)
+            found = False
+            if type == TYPE_CLASS:
+                for lclass in element.classes:
+                    if lclass.id == id:
+                        found = True
+
+            elif type == TYPE_TEACHER:
+                if element.teacher:
+                    if element.teacher.id == id:
+                        found = True
+
+            elif type == TYPE_ROOM:
+                for lroom in element.rooms:
+                    if lroom.id == id:
+                        found = True
+
+            # If the lesson element is important then add it to plan array
+            if found:
+                for time in lesson.times:  # Go for every time the lesson is thought
+                    # print(time.hour, " ", time.day)
+                    # print(element.subject.shortcode)
+
+                    # Add the time object to the matching LessonContainer on the right position in the plan array
+                    plan[time.hour - 1][time.day - 1].set_time(time)
+
+                    # Check if there is an room for this time and lesson
+                    try:
+                        room = time.rooms[i]
+                    except IndexError:
+                        room = None
+
+                    # Create a LessonElementContainer with room and lesson element
+                    element_container = LessonElementContainer(element, room)
+
+                    # Add this container object to the LessonContainer object in the plan array
+                    plan[time.hour - 1][time.day - 1].append(element_container)
+
+    # print(plan)
+    #
+    # for hour in plan:
+    #     for day in hour:
+    #         print(day.elements)
+    #         for c in day.elements:
+    #             # print(c.element)
+    #             pass
+
+    return plan
diff --git a/biscuit/apps/untis/templates/untisconnect/test.html b/biscuit/apps/untis/templates/untisconnect/test.html
deleted file mode 100755
index 3640a0c7cfbe984bd0d678eed49b507c150e40ff..0000000000000000000000000000000000000000
--- a/biscuit/apps/untis/templates/untisconnect/test.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<h1>UNTIS CONNECTING SYSTEM</h1>
-{{ teachers }}
-
-{% for teacher in teachers %}
-    <p>{{ teacher.first_name }} {{ teacher.name }}</p>
-{% endfor %}
\ No newline at end of file
diff --git a/biscuit/apps/untis/tests.py b/biscuit/apps/untis/tests.py
deleted file mode 100755
index 7ce503c2dd97ba78597f6ff6e4393132753573f6..0000000000000000000000000000000000000000
--- a/biscuit/apps/untis/tests.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from django.test import TestCase
-
-# Create your tests here.
diff --git a/biscuit/apps/untis/urls.py b/biscuit/apps/untis/urls.py
deleted file mode 100755
index 193ccea9100ba506727b15886ea6c0a6f49f3fd3..0000000000000000000000000000000000000000
--- a/biscuit/apps/untis/urls.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from django.urls import path
-from . import views
-
-urlpatterns = [
-    path('', views.test, name='untisconnect_test')
-]
diff --git a/biscuit/apps/untis/views.py b/biscuit/apps/untis/views.py
deleted file mode 100755
index f15e66c0186e448e4d970fa5a24338ed38802503..0000000000000000000000000000000000000000
--- a/biscuit/apps/untis/views.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from django.contrib.auth.decorators import login_required
-from django.shortcuts import render
-
-
-# Create your views here.
-from .api import get_all_teachers, get_all_classes
-
-
-@login_required
-def test(request):
-    teachers = get_all_teachers()
-    classes = get_all_classes()
-    context = {
-        'teachers': teachers
-    }
-    return render(request, 'untisconnect/test.html', context=context)