From e9635256b919eb05af599799f0df82386648e144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis?= Date: Thu, 22 Mar 2018 21:59:19 +0300 Subject: [PATCH 1/2] Update success.html More user friendly. --- relationships/templates/relationships/success.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relationships/templates/relationships/success.html b/relationships/templates/relationships/success.html index a00d70e..dbcc498 100644 --- a/relationships/templates/relationships/success.html +++ b/relationships/templates/relationships/success.html @@ -4,5 +4,5 @@ {% block content %}

{% trans "Success" %}

{% trans "You are " %}{% if add %}{% trans "now" %}{% else %}{% trans "no longer" %}{% endif %} {{ status.from_slug }} {{ to_user.username }}

-

{% blocktrans with to_user.username as to_user_username %}{{ to_user_username }}'s profile{% endblocktrans %}

+

{% blocktrans with username=to_user.username url=to_user.get_absolute_url %}Do you want going to {{ username }}'s profile{% endblocktrans %}

{% endblock %} From 8a487a6047f77c69fe630584973ec6a66f781598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis?= Date: Sat, 31 Mar 2018 04:14:00 +0300 Subject: [PATCH 2/2] Update success.html Phrase was changed. --- relationships/templates/relationships/success.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relationships/templates/relationships/success.html b/relationships/templates/relationships/success.html index dbcc498..8f01062 100644 --- a/relationships/templates/relationships/success.html +++ b/relationships/templates/relationships/success.html @@ -4,5 +4,5 @@ {% block content %}

{% trans "Success" %}

{% trans "You are " %}{% if add %}{% trans "now" %}{% else %}{% trans "no longer" %}{% endif %} {{ status.from_slug }} {{ to_user.username }}

-

{% blocktrans with username=to_user.username url=to_user.get_absolute_url %}Do you want going to {{ username }}'s profile{% endblocktrans %}

+

{% blocktrans with username=to_user.username url=to_user.get_absolute_url %}View {{ username}}'s profile{% endblocktrans %}

{% endblock %}