Commit 002972f2 by Diana Huang

Remove dates from status messages

* clean up one last typo

LMS-1387
parent 17610edf
...@@ -695,7 +695,7 @@ def disable_account_ajax(request): ...@@ -695,7 +695,7 @@ def disable_account_ajax(request):
context['message'] = _("User with username {} does not exist").format(username) context['message'] = _("User with username {} does not exist").format(username)
return JsonResponse(context, status=400) return JsonResponse(context, status=400)
else: else:
user_account, _succss = UserStanding.objects.get_or_create( user_account, _success = UserStanding.objects.get_or_create(
user=user, defaults={'changed_by': request.user}, user=user, defaults={'changed_by': request.user},
) )
if account_action == 'disable': if account_action == 'disable':
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<div class="status-note"> <div class="status-note">
<span class="deco-arrow"></span> <span class="deco-arrow"></span>
<p>${_("Your verification status is good until October 31, 2013")}</p> <p>${_("Your verification status is good for one year after submission.")}</p>
</div> </div>
</div> </div>
</li> </li>
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<div class="status-note"> <div class="status-note">
<span class="deco-arrow"></span> <span class="deco-arrow"></span>
<p>${_("Your verification, submitted on October 29, 2013, is pending.")}</p> <p>${_("Your verification photos have been submitted and are awaiting a response.")}</p>
</div> </div>
</div> </div>
</li> </li>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment