Skip to content
Snippets Groups Projects
Commit fa974e4e authored by Jonathan Weth's avatar Jonathan Weth :keyboard: Committed by root
Browse files

Merge pull request #148 from Katharineum/dev

Dev to server
parents 74d4c98a a3fa2c5d
No related branches found
No related tags found
1 merge request!86Merge school-apps
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/schoolapps/static/materialize" vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
# Generated by Django 2.1.2 on 2019-03-04 13:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('aub', '0009_merge_20190222_1226'),
]
operations = [
migrations.AlterModelOptions(
name='aub',
options={'permissions': (('apply_for_aub', 'Apply for a AUB'), ('cancel_aub', 'Cancel a AUB'), ('allow1_aub', 'First permission'), ('allow2_aub', 'Second permission'), ('check1_aub', 'Check a AUB'), ('check2_aub', 'Check a AUB'), ('view_archive', 'View AUB archive'))},
),
migrations.AlterField(
model_name='aub',
name='status',
field=models.ForeignKey(default=1, on_delete=models.SET(1), related_name='aubs', to='aub.Status'),
),
]
{% include 'partials/header.html' %}
<main>
<h4>{{ aub.from_date }} bis {{ aub.to_date }}</h4>
<p><strong>Status: <span class="badge new {{ aub.status.style_classes }}">{{ aub.status.name }}</span></strong></p>
<p>{{ aub.description }}</p>
<hr>
<strong>
Eingereicht am {{ aub.created_at.date }}
von {{ aub.created_by.first_name }} {{ aub.created_by.last_name }}
</strong>
<h5>{{ aub.from_date }}, {{ aub.from_time }} Uhr bis <br />
{{ aub.to_date }}, {{ aub.to_time }} Uhr </h5>
<p><strong>Status: <span class="badge new {{ aub.status.style_classes }}">{{ aub.status.name }}</span></strong></p>
<p><strong>Beschreibung:</strong> {{ aub.description }}</p>
<hr>
</main>
{% include 'partials/footer.html' %}
\ No newline at end of file
......@@ -152,10 +152,12 @@ def check2(request):
# Notify user
register_notification(title="Ihr Antrag auf Unterrichtsbefreiung wurde genehmigt",
description="Ihr Antrag auf Unterrichtsbefreiung vom {} bis {} wurde von der "
description="Ihr Antrag auf Unterrichtsbefreiung vom {}, {} Uhr bis {}, {} Uhr wurde von der "
"Schulleitung genehmigt."
.format(formats.date_format(aub.from_date),
formats.date_format(aub.to_date)),
formats.time_format(aub.from_time),
formats.date_format(aub.to_date),
formats.time_format(aub.to_time)),
app=AubConfig.verbose_name, user=aub.created_by,
link=request.build_absolute_uri(reverse('aub_details', args=[aub.id]))
)
......@@ -165,11 +167,13 @@ def check2(request):
# Notify user
register_notification(title="Ihr Antrag auf Unterrichtsbefreiung wurde abgelehnt",
description="Ihr Antrag auf Unterrichtsbefreiung vom {} bis {} wurde von der "
description="Ihr Antrag auf Unterrichtsbefreiung vom {}, {} Uhr bis {}, {} Uhr wurde von der "
"Schulleitung abgelehnt. Für weitere Informationen kontaktieren Sie "
"bitte die Schulleitung."
.format(formats.date_format(aub.from_date),
formats.date_format(aub.to_date)),
formats.time_format(aub.from_time),
formats.date_format(aub.to_date),
formats.time_format(aub.to_time)),
app=AubConfig.verbose_name, user=aub.created_by,
link=request.build_absolute_uri(reverse('aub_details', args=[aub.id]))
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment