diff --git a/templates/partials/sass/header.sass b/templates/partials/sass/header.sass index 052941a..486b6db 100644 --- a/templates/partials/sass/header.sass +++ b/templates/partials/sass/header.sass @@ -173,6 +173,8 @@ header position: relative width: 46px height: 46px + background-color: #4C4C4C + border-radius: 50% .ratingInset width: 100% height: 100% diff --git a/users/forms.py b/users/forms.py index b1cd899..c7f8c3d 100644 --- a/users/forms.py +++ b/users/forms.py @@ -1,4 +1,5 @@ import itertools +from archilance.settings import dev as settings import pydash as _; from django import forms @@ -87,7 +88,7 @@ class UserProfileEditFullForm(forms.ModelForm): widgets = { # TODO: Use common format with jQueryUI Datepicker: - 'date_of_birth': forms.TextInput(attrs={'class': 'datepicker box-sizing simple-input'}), + 'date_of_birth': forms.DateInput(attrs={'class': 'datepicker box-sizing simple-input'}), 'contractor_status': forms.Select(attrs={'class': 'simple-select'}) } diff --git a/users/templates/user_profile_edit_old.html b/users/templates/trash/user_profile_edit_old.html similarity index 100% rename from users/templates/user_profile_edit_old.html rename to users/templates/trash/user_profile_edit_old.html diff --git a/users/templates/user_profile_edit.html b/users/templates/user_profile_edit.html index 0eddcab..3aee387 100644 --- a/users/templates/user_profile_edit.html +++ b/users/templates/user_profile_edit.html @@ -42,11 +42,6 @@ {% else %} profile-image {% endif %} -{# {% with "/static/img/profile.jpg" as path %}#} -{# {% thumbnail path "100x100" crop="center" as im %}#} -{# profile-image#} -{# {% endthumbnail %}#} -{# {% endwith %}#} {% endif %} @@ -327,6 +322,8 @@ + + @@ -335,6 +332,10 @@ {% endblock %}