diff --git a/users/migrations/0078_auto_20180826_1440.py b/users/migrations/0078_auto_20180826_1440.py new file mode 100644 index 00000000..52ddb96e --- /dev/null +++ b/users/migrations/0078_auto_20180826_1440.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-08-26 12:40 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0077_auto_20180824_1750'), + ] + + operations = [ + migrations.AddField( + model_name='user', + name='disclaimer', + field=models.FileField(blank=True, upload_to='disclaimers'), + ), + migrations.AlterField( + model_name='user', + name='state', + field=models.IntegerField(choices=[(0, 'STATE_ACTIVE'), (1, 'STATE_DISABLED'), (2, 'STATE_ARCHIVE')], default=0), + ), + ] diff --git a/users/templates/users/user.html b/users/templates/users/user.html index efb985c1..526c7447 100644 --- a/users/templates/users/user.html +++ b/users/templates/users/user.html @@ -59,6 +59,7 @@ function submitBday() {
{{ userform.gpg_fingerprint.label_tag }} @@ -163,10 +186,11 @@ function submitBday() { {% render_field userform.gpg_fingerprint class="form-control" placeholder=userform.gpg_fingerprint.label %} |
---|