parent
4253d16391
commit
2b9113a6f6
13 changed files with 205 additions and 93 deletions
@ -0,0 +1,20 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
# Generated by Django 1.11.6 on 2017-11-10 13:02 |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import migrations, models |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('finance', '0011_invoice_yandex_pay'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AlterField( |
||||||
|
model_name='invoice', |
||||||
|
name='status', |
||||||
|
field=models.CharField(choices=[('W', 'Ожидание согласия'), ('P', 'На оплате'), ('F', 'Оплачен'), ('C', 'Отклонен')], default='W', max_length=1, verbose_name='Статус'), |
||||||
|
), |
||||||
|
] |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
# Generated by Django 1.11.6 on 2017-11-10 13:02 |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import migrations, models |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('journals', '0008_remove_journal_children'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AlterField( |
||||||
|
model_name='thread', |
||||||
|
name='key', |
||||||
|
field=models.CharField(max_length=200, unique=True), |
||||||
|
), |
||||||
|
] |
||||||
@ -0,0 +1,25 @@ |
|||||||
|
# -*- coding: utf-8 -*- |
||||||
|
# Generated by Django 1.11.6 on 2017-11-10 16:46 |
||||||
|
from __future__ import unicode_literals |
||||||
|
|
||||||
|
from django.db import migrations, models |
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration): |
||||||
|
|
||||||
|
dependencies = [ |
||||||
|
('journals', '0009_auto_20171110_1302'), |
||||||
|
] |
||||||
|
|
||||||
|
operations = [ |
||||||
|
migrations.AlterField( |
||||||
|
model_name='journal', |
||||||
|
name='action_type', |
||||||
|
field=models.CharField(choices=[('try', 'попытался сдать'), ('yes', 'одобрил'), ('no', 'отклонил'), ('favorite', 'добавил в избранное'), ('watch', 'просмотрел'), ('like', 'лайкнул'), ('dislike', 'дизлайкнул'), ('comment', 'оставил комментарий'), ('start', 'начал прохождение'), ('end', 'закончил прохождение'), ('create', 'создал'), ('update', 'обновил'), ('delete', 'удалил')], max_length=31), |
||||||
|
), |
||||||
|
migrations.AlterField( |
||||||
|
model_name='thread', |
||||||
|
name='key', |
||||||
|
field=models.CharField(editable=False, max_length=200, unique=True), |
||||||
|
), |
||||||
|
] |
||||||
@ -1,19 +1,36 @@ |
|||||||
unidecode |
|
||||||
environ |
|
||||||
amqp==2.2.2 |
amqp==2.2.2 |
||||||
|
Babel==2.5.1 |
||||||
billiard==3.5.0.3 |
billiard==3.5.0.3 |
||||||
celery==4.1.0 |
celery==4.1.0 |
||||||
|
certifi==2017.11.5 |
||||||
|
chardet==3.0.4 |
||||||
Django==1.11.6 |
Django==1.11.6 |
||||||
django-appconf==1.0.2 |
django-appconf==1.0.2 |
||||||
django-celery-beat==1.0.1 |
django-celery-beat==1.0.1 |
||||||
django-celery-email==2.0.0 |
django-celery-email==2.0.0 |
||||||
django-celery-results==1.0.1 |
django-celery-results==1.0.1 |
||||||
|
django-environ==0.4.4 |
||||||
|
django-redis==4.8.0 |
||||||
|
django-redis-sessions==0.6.1 |
||||||
|
django-yandex-money==1.1.2 |
||||||
djangorestframework==3.7.0 |
djangorestframework==3.7.0 |
||||||
|
environ==1.0 |
||||||
|
flower==0.9.2 |
||||||
|
future==0.16.0 |
||||||
|
idna==2.6 |
||||||
kombu==4.1.0 |
kombu==4.1.0 |
||||||
|
lxml==4.1.1 |
||||||
olefile==0.44 |
olefile==0.44 |
||||||
Pillow==4.3.0 |
Pillow==4.3.0 |
||||||
pkg-resources==0.0.0 |
pkg-resources==0.0.0 |
||||||
psycopg2==2.7.3.1 |
psycopg2==2.7.3.1 |
||||||
pytz==2017.2 |
pytz==2017.2 |
||||||
raven==6.2.1 |
raven==6.2.1 |
||||||
|
redis==2.10.6 |
||||||
|
requests==2.18.4 |
||||||
|
six==1.11.0 |
||||||
|
tornado==4.5.2 |
||||||
|
Unidecode==0.4.21 |
||||||
|
urllib3==1.22 |
||||||
vine==1.1.4 |
vine==1.1.4 |
||||||
|
yandex-money-sdk==0.1.3 |
||||||
|
|||||||
Loading…
Reference in new issue