|
|
|
|
@ -152,37 +152,37 @@ |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">INSTAGRAM</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='instagram' class="field__input" type="text" placeholder="https://instagram.com/school.lil.city" value="{{ user.instagram }}"> |
|
|
|
|
<input name='instagram' class="field__input" type="text" placeholder="https://instagram.com/school.lil.city" value="{% if user.instagram %}{{ user.instagram }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">FACEBOOK</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='facebook' class="field__input" type="text" placeholder="https://facebook.com/lilcitycompany" value="{{ user.facebook }}"> |
|
|
|
|
<input name='facebook' class="field__input" type="text" placeholder="https://facebook.com/lilcitycompany" value="{% if user.facebook %}{{ user.facebook }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">TWITTER</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='twitter' class="field__input" type="text" placeholder="https://twitter.com/lilcitycompany" value="{{ user.twitter }}"> |
|
|
|
|
<input name='twitter' class="field__input" type="text" placeholder="https://twitter.com/lilcitycompany" value="{% if user.twitter %}{{ user.twitter }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">PINTEREST</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='pinterest' class="field__input" type="text" placeholder="https://pinterest.com/lilcitycompany" value="{{ user.pinterest }}"> |
|
|
|
|
<input name='pinterest' class="field__input" type="text" placeholder="https://pinterest.com/lilcitycompany" value="{% if user.pinterest %}{{ user.pinterest }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">YOUTUBE</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='youtube' class="field__input" type="text" placeholder="https://youtube.com/lilcitycompany" value="{{ user.youtube }}"> |
|
|
|
|
<input name='youtube' class="field__input" type="text" placeholder="https://youtube.com/lilcitycompany" value="{% if user.youtube %}{{ user.youtube }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form__field field"> |
|
|
|
|
<div class="field__label">VKONTAKTE</div> |
|
|
|
|
<div class="field__wrap"> |
|
|
|
|
<input name='vkontakte' class="field__input" type="text" placeholder="https://vk.com/lilcitycompany" value="{{ user.vkontakte }}"> |
|
|
|
|
<input name='vkontakte' class="field__input" type="text" placeholder="https://vk.com/lilcitycompany" value="{% if user.vkontakte %}{{ user.vkontakte }}{% endif %}"> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|