diff --git a/templates/partials/base.html b/templates/partials/base.html index a003b54..fd0ee30 100644 --- a/templates/partials/base.html +++ b/templates/partials/base.html @@ -68,6 +68,7 @@ + diff --git a/users/templates/user_profile_edit.html b/users/templates/user_profile_edit.html index 68a31b4..f54acd1 100644 --- a/users/templates/user_profile_edit.html +++ b/users/templates/user_profile_edit.html @@ -33,7 +33,7 @@ @@ -165,3 +165,16 @@ {% endblock %} + +{% block js_block %} + +{% endblock %} diff --git a/wallets/migrations/0015_auto_20160902_1904.py b/wallets/migrations/0015_auto_20160902_1904.py new file mode 100644 index 0000000..06d38fe --- /dev/null +++ b/wallets/migrations/0015_auto_20160902_1904.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.7 on 2016-09-02 16:04 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('wallets', '0014_payfromscore'), + ] + + operations = [ + migrations.AlterModelOptions( + name='payfromscore', + options={'ordering': ('-created_at',), 'verbose_name': 'Оплата со счета', 'verbose_name_plural': 'Оплата со счета'}, + ), + ]