Small fixes

This commit is contained in:
Skia 2016-09-01 16:43:21 +02:00
parent f7e3251ae5
commit d27f62dca9
2 changed files with 4 additions and 1 deletions

View File

@ -11,11 +11,13 @@
{%- endif -%} {%- endif -%}
>{% trans %}Infos{% endtrans %}</a> >{% trans %}Infos{% endtrans %}</a>
{% if profile == user %}
<a href="{{ url('core:user_tools') }}" <a href="{{ url('core:user_tools') }}"
{%- if tab == "tools" -%} {%- if tab == "tools" -%}
class="selected_tab" class="selected_tab"
{%- endif -%} {%- endif -%}
>{% trans %}Tools{% endtrans %}</a> >{% trans %}Tools{% endtrans %}</a>
{% endif %}
<a href="{{ url('core:user_stats', user_id=profile.id) }}" <a href="{{ url('core:user_stats', user_id=profile.id) }}"
{%- if tab == "stats" -%} {%- if tab == "stats" -%}

View File

@ -81,7 +81,8 @@ class LoginForm(AuthenticationForm):
user = User.objects.filter(email=data['username']).first() user = User.objects.filter(email=data['username']).first()
else: else:
user = User.objects.filter(username=data['username']).first() user = User.objects.filter(username=data['username']).first()
data['username'] = user.username if user:
data['username'] = user.username
kwargs['data'] = data kwargs['data'] = data
super(LoginForm, self).__init__(*arg, **kwargs) super(LoginForm, self).__init__(*arg, **kwargs)
self.fields['username'].label = _("Username, email, or account number") self.fields['username'].label = _("Username, email, or account number")