diff --git a/api/v1/serializers/user.py b/api/v1/serializers/user.py
index f73249ae..888806d0 100644
--- a/api/v1/serializers/user.py
+++ b/api/v1/serializers/user.py
@@ -30,6 +30,7 @@ class UserSerializer(serializers.ModelSerializer):
'city',
'about',
'instagram',
+ 'instagram_hashtag',
'facebook',
'twitter',
'pinterest',
diff --git a/apps/user/migrations/0022_user_instagram_hashtag.py b/apps/user/migrations/0022_user_instagram_hashtag.py
new file mode 100644
index 00000000..12205c3a
--- /dev/null
+++ b/apps/user/migrations/0022_user_instagram_hashtag.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.0.5 on 2018-06-06 21:30
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('user', '0021_auto_20180429_1308'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='user',
+ name='instagram_hashtag',
+ field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Инстаграм хештег'),
+ ),
+ ]
diff --git a/apps/user/models.py b/apps/user/models.py
index 6adf6cf4..c5c6db04 100644
--- a/apps/user/models.py
+++ b/apps/user/models.py
@@ -62,6 +62,7 @@ class User(AbstractUser):
city = models.CharField('Город', max_length=85, null=True, blank=True)
about = models.CharField('О себе', max_length=1000, null=True, blank=True)
instagram = models.URLField(default='', null=True, blank=True)
+ instagram_hashtag = models.CharField('Инстаграм хештег', max_length=100, null=True, blank=True)
facebook = models.URLField(default='', null=True, blank=True)
twitter = models.URLField(default='', null=True, blank=True)
pinterest = models.URLField(default='', null=True, blank=True)
diff --git a/project/templates/lilcity/index.html b/project/templates/lilcity/index.html
index a3113787..71ce74a4 100644
--- a/project/templates/lilcity/index.html
+++ b/project/templates/lilcity/index.html
@@ -30,7 +30,7 @@
{% comment %} {% endcomment %}
-
+