remove obsolete kontor.py

This commit is contained in:
2025-04-30 17:31:18 +02:00
parent 304005822c
commit 931b4a0aba
1043 changed files with 61259 additions and 0 deletions
@@ -0,0 +1,45 @@
{% extends "shared/base.html" %}
{% block title %}
<title>Actor Detail</title>
{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col">
<h1 class="display-5">Actor Detail</h1>
</div>
</div>
<div class="row">
<table class="table table-striped table-hover">
<tbody>
<tr>
<th scope="row">Actor Name</th>
<td colspan="2">{{actor.name}}</td>
</tr>
<tr>
<th scope="row">Works</th>
<td colspan="2">
<ul>
{% for media_actor_files in actor.media_actor_files %}
<li><a href="/media/files/{{media_actor_files.media_file.id}}">{{media_actor_files.media_file.title}}</a></li>
{% endfor %}
</ul>
</td>
</tr>
<tr>
<th scope="row">Data Created</th>
<td colspan="2">{{actor.created_date}}</td>
</tr>
<tr>
<th scope="row">Data Modified</th>
<td colspan="2">{{actor.last_modified_date}}</td>
</tr>
</tbody>
</table>
</div>
</div>
{% endblock %}
@@ -0,0 +1,32 @@
{% extends "shared/base.html" %}
{% block title %}
<title>MediaFile Actors</title>
{% endblock %}
{% block content %}
{% with msg=msg %}
{% include "components/alerts.html" %}
{% endwith %}
<div class="container">
<div class="row">
<div class="col">
<h1 class="display-5">Actors..</h1>
</div>
</div>
<div class="row">
{% for actor in actors %}
<div class="col-lg-4 col-md-3 col-sm-10 mr-auto">
{% with obj=actor %}
{% include "components/actor_cards.html" %}
{% endwith %}
{% if loop.index %3 %}
</div>
{% else %}
</div></div><br><div class="row">
{% endif %}
{% endfor %}
</div>
</div>
{% endblock %}
@@ -0,0 +1,65 @@
{% extends "shared/base.html" %}
{% block title %}
<title>MediaFile Detail</title>
{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col">
<h1 class="display-5">MediaFile Detail</h1>
</div>
</div>
<div class="row">
<table class="table table-striped table-hover">
<tbody>
<tr>
<th scope="row">MediaFile Title</th>
<td colspan="2">{{mediafile.title}}</td>
</tr>
<tr>
<th scope="row">MediaFile URL</th>
<td colspan="2">{{mediafile.url}}</td>
</tr>
<tr>
<th scope="row">MediaFile Cloudlink</th>
<td colspan="2">{{mediafile.cloud_link}}</td>
</tr>
<tr>
<th scope="row">MediaFile Download?</th>
<td colspan="2">{{mediafile.should_download}}</td>
</tr>
<tr>
<th scope="row">MediaFile Review?</th>
<td colspan="2">{{mediafile.review}}</td>
</tr>
<tr>
<th scope="row">Actors</th>
<td colspan="2">
<ul>
{% for media_actor_files in mediafile.media_actor_files %}
<li><a href="/media/actors/{{media_actor_files.media_actor.id}}">{{media_actor_files.media_actor.name}}</a></li>
{% endfor %}
</ul>
</td>
</tr>
<tr>
<th scope="row">Data Created</th>
<td colspan="2">{{mediafile.created_date}}</td>
</tr>
<tr>
<th scope="row">Data Modified</th>
<td colspan="2">{{mediafile.last_modified_date}}</td>
</tr>
<tr>
<th scope="row">Data Version</th>
<td colspan="2">{{mediafile.version}}</td>
</tr>
</tbody>
</table>
</div>
</div>
{% endblock %}
+29
View File
@@ -0,0 +1,29 @@
{% extends "shared/base.html" %}
{% block title %}
<title>MediaFiles List</title>
{% endblock %}
{% block content %}
{% with msg=msg %}
{% include "components/alerts.html" %}
{% endwith %}
<div class="container">
<table class="table table-hover">
<thead><tr>
<th scope="col">Titel</th>
<th scope="col">URL</th>
<th scope="col">Cloudlink</th>
</tr></thead>
<tbody>
{% for mediafile in mediafiles %}
<tr>
<th scope="row"><a href="/media/files/{{mediafile.id}}">{{mediafile.title}}</a></th>
<td>{{mediafile.url}}</td>
<td>{{mediafile.cloud_link}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}