Display Ban Reason in Account

In the meantime, you can just edit the user_edit Admin template and put something like this after the <xf:if is="$success"> block:

Code:
<xf:if is="$user.is_banned">
    <div class="blockMessage blockMessage--error">User is banned: {$user.Ban.user_reason}</div>
</xf:if>

Just a quick job that doesn't look too bad.

Looks like:

5694c3da47.png


Better in the core, of course, but that might help in the meantime.
 
Top Bottom