diff --git a/ivatar/ivataraccount/templates/profile.html b/ivatar/ivataraccount/templates/profile.html index f5fe074..ad2d4f5 100644 --- a/ivatar/ivataraccount/templates/profile.html +++ b/ivatar/ivataraccount/templates/profile.html @@ -55,7 +55,7 @@ {% endfor %} {% for openid in user.unconfirmedopenid_set.all %}
  • {% csrf_token %}{{ openid.openid }} -
    {# TODO: (expires in xx hours) #}
  • + {# TODO: (expires in xx hours) #} {% endfor %} {% endif %} @@ -72,7 +72,7 @@

    {% trans 'Here are the photos you have uploaded/imported:' %}

    diff --git a/ivatar/ivataraccount/views.py b/ivatar/ivataraccount/views.py index 96a48ca..93ab528 100644 --- a/ivatar/ivataraccount/views.py +++ b/ivatar/ivataraccount/views.py @@ -374,7 +374,9 @@ class AddOpenIDView(SuccessMessageMixin, FormView): if not openid_id: return render(self.request, self.template_name, {'form': form}) else: - messages.success(self.request, _('ID added successfully')) + # At this point we have an unconfirmed OpenID, but + # we do not add the message, that we successfully added it, + # since this is misleading return HttpResponseRedirect( reverse_lazy('openid_redirection', args=[openid_id]))