parent
a44a7e4da9
commit
04e72a96a7
14 changed files with 145 additions and 45 deletions
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-12 12:08 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('chat', '0004_auto_20160804_1806'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='message', |
||||
name='is_new', |
||||
field=models.BooleanField(default=True), |
||||
), |
||||
] |
||||
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-12 12:11 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('projects', '0001_squashed_0015_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='candidate', |
||||
name='position', |
||||
field=models.PositiveIntegerField(default=0, max_length=10), |
||||
), |
||||
] |
||||
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-12 12:12 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('projects', '0002_candidate_position'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='candidate', |
||||
name='position', |
||||
field=models.PositiveIntegerField(default=0), |
||||
), |
||||
] |
||||
@ -0,0 +1,2 @@ |
||||
Регистрация через соцсети |
||||
{{ user.username }} |
||||
@ -0,0 +1,2 @@ |
||||
Регистрация через соцсети |
||||
{{ user.username }} |
||||
Loading…
Reference in new issue