Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Rename student_registration_enabled from "Klausuranmeldung aktiv" to …
Browse files Browse the repository at this point in the history
…"Studenten Registrierung aktiv" since #106 might change the behavior
  • Loading branch information
ckleemann committed Oct 5, 2016
1 parent dd1afae commit 9a77872
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions students/migrations/0009_auto_20161005_1820.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-10-05 16:20
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('students', '0008_auto_20160529_2109'),
]

operations = [
migrations.AlterField(
model_name='settings',
name='student_registration_enabled',
field=models.BooleanField(default=False, verbose_name='Studenten Registrierung aktiv'),
),
]
2 changes: 1 addition & 1 deletion students/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Meta:
verbose_name = _("Einstellungen")
verbose_name_plural = _("Einstellungen")

student_registration_enabled = models.BooleanField(default=False, verbose_name=_("Klausuranmeldung aktiv"))
student_registration_enabled = models.BooleanField(default=False, verbose_name=_("Studenten Registrierung aktiv"))

def get_name(self):
return '%s' % _("Students Einstellungen")
Expand Down

0 comments on commit 9a77872

Please sign in to comment.