25 lines
929 B
HTML
25 lines
929 B
HTML
{% extends 'basepledge.html' %}
|
|
|
|
{% load humanize %}
|
|
|
|
{% block title %}Please Log in as...{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
<div style="height:15px"></div>
|
|
|
|
<div class="jsmodule rounded clearfix">
|
|
<div class="jsmod-content">
|
|
|
|
<div><h2>Error: Wrong user for a {{ action }} transaction</h2>
|
|
<div>
|
|
<p>Unglue.it would like to process your {{ action }}, but you are currently logged in as <code>{{request.user.username}}</code>. To complete your {{ action }}, you need to <a href='{% url 'auth_logout' %}?next={{ request.get_full_path|urlencode }}'>log out</a>, and then <a href='{% url 'superlogin' %}?next={{ request.get_full_path|urlencode }}'>log in</a> as <code>{{ transaction.user.username }}</code>. If you have any problem, don't hesitate to <a href="{% url 'feedback' %}?page={{request.build_absolute_uri|urlencode:""}}">contact us</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|