Skip to content
Snippets Groups Projects
Commit 0e82886b authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[accounts][models/migration] typo correction

parent cd18a930
No related branches found
No related tags found
1 merge request!328Improve automatic emails with temporary urls
This commit is part of merge request !328. Comments created here will be created in the context of that merge request.
# -*- coding: utf-8 -*-
# Generated by Django 1.11.26 on 2020-04-27 23:41
# Generated by Django 1.11.26 on 2020-05-02 03:02
from __future__ import unicode_literals
from django.db import migrations, models
......@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
name='TemporaryUrl',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('status', models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from sueprvisee')], default='V', max_length=1)),
('status', models.CharField(choices=[('V', 'Supervisor validates supervisee'), ('Y', 'Self yearly revalidation from supervisee')], default='V', max_length=1)),
('url_hash', models.CharField(max_length=32, unique=True, verbose_name='Url')),
('expires', models.DateTimeField(verbose_name='Expires')),
('supervision_track', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='supervisees', to='accounts.SupervisionTrack')),
......
......@@ -163,7 +163,7 @@ class TemporaryUrl(models.Model):
URL_STATUS = (
(VALIDATION, "Supervisor validates supervisee"),
(YEARREVALIDATION, "Self yearly revalidation from sueprvisee"),
(YEARREVALIDATION, "Self yearly revalidation from supervisee"),
)
# _____ Fields __________
......
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