remotes/origin/hotfix/LIL-731
commit
ee8b155c91
25 changed files with 204 additions and 47 deletions
@ -0,0 +1,18 @@ |
||||
# Generated by Django 2.0.7 on 2019-01-13 23:55 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('course', '0046_auto_20181009_2334'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='course', |
||||
name='old_price', |
||||
field=models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True, verbose_name='Старая цена курса'), |
||||
), |
||||
] |
||||
@ -0,0 +1,18 @@ |
||||
# Generated by Django 2.0.7 on 2019-01-14 16:49 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('payment', '0029_auto_20181211_1731'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='userbonus', |
||||
name='amount', |
||||
field=models.DecimalField(decimal_places=2, default=0, max_digits=8), |
||||
), |
||||
] |
||||
@ -1,4 +1,4 @@ |
||||
<a |
||||
class="timing__btn btn btn_light" |
||||
href="{% url 'school:lesson-detail' live_lesson.id %}" |
||||
href="{{ live_lesson.url }}" |
||||
>смотреть урок</a> |
||||
|
||||
@ -1,4 +1,4 @@ |
||||
<a |
||||
class="timing__btn btn btn_light" |
||||
href="{% url 'school:lesson-detail' live_lesson.id %}" |
||||
href="{{ live_lesson.url }}" |
||||
>подробнее</a> |
||||
|
||||
Loading…
Reference in new issue