# Add deleted/flag/suspension counts to user profile for staff

**URL:** <https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944>\
**Category:** Feature\
**Tags:** rfc, spec\
**Created:** [2014年四月21日 23:19 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944 "2014-04-21T23:19:29Z")\
**Posts on this page:** 7\
**Page:** 1

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2014年四月21日 23:19 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/1 "2014-04-21T23:19:29Z")

</div>

We need to add some staff counters on the user page to help identify problem users over time:

- number of deleted (not by self posts)
- number of flags
- number of times suspended

 ![](https://global.discourse-cdn.com/meta/original/2X/0/0dfac2f684cb21ee07624ebc289fa83730326d1f.jpg) 

That @radq is a well known problem user for example.. clicking there on the numbers in the circles should drill in.

Alternate mockup (though it needs to be in the upper left as pictured, not at the bottom here)

 ![](https://global.discourse-cdn.com/meta/original/2X/5/508872af21cfbdc5a088a46eb2ca96956fb45713.png) 

```html
<section class="controls admin-history">
  <div class="span4"><span class="helpfulFlags bigText">33</span>/<span class="totalFlags">37</span> helpful flags</div>
  <div class="span4"><span class="flaggedPosts bigText">8</span> flagged posts</div>
  <div class="span4"><span class="deletedPosts bigText">2</span>&nbsp;suspensions</div>
</section>

```

```css

.bigText {
    font-size: 24px;
    border-radius: 999px;
    display: inline-block;
    height: 30px;
    width: 40px;
    text-align: center;
    vertical-align: super;
    padding-top: 10px;
}
.flaggedPosts {
    background-color: #e45735;
}
.deletedPosts {
    background-color: rgb(194, 32, 32);
}
.helpfulFlags {
    background-color: green;
}
.totalFlags {
    font-weight: bold;
}
.user-main .controls.admin-history {
    padding-bottom: 30px;
    padding-top: 0;
    color: white;
}

```

---

<div class="post-metadata">

**Author:** ![davemaxwell](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/davemaxwell/32/108393_2.png) [@davemaxwell](https://meta.discourse.org/u/davemaxwell)\
**Post date:** [2014年四月23日 13:39 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/2 "2014-04-23T13:39:21Z")

</div>

> [@codinghorror](#):
>
> Alternate mockup (though it needs to be in the upper left as pictured, not at the bottom here)

Defnitely agree, though I think from a pure usability perspective, the alternate would be more intuitive for newer users to discourse (especially those on a tablet - how would they know what the colored circles mean on the first mockup?) Perhaps a user setting to allow them to switch between the layouts (i.e. users start out seeing the first, then as they become more experienced users could switch to the top)

_Poor radq, always getting picked on…_

---

<div class="post-metadata">

**Author:** ![nXqd](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nxqd/32/114262_2.png) [@nXqd](https://meta.discourse.org/u/nXqd)\
**Post date:** [2014年四月23日 13:45 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/3 "2014-04-23T13:45:38Z")

</div>

Great ! This would be very useful.

---

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2014年四月23日 18:13 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/4 "2014-04-23T18:13:23Z")

</div>

> [@davemaxwell](#):
>
> users start out seeing the first

Users wouldn’t see this, it is visible to staff only.

---

<div class="post-metadata">

**Author:** ![davemaxwell](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/davemaxwell/32/108393_2.png) [@davemaxwell](https://meta.discourse.org/u/davemaxwell)\
**Post date:** [2014年四月24日 12:30 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/5 "2014-04-24T12:30:02Z")

</div>

> [@codinghorror](#):
>
> Users wouldn’t see this, it is visible to staff only.

I realize that - I mistyped(_/spoke/whatever_). My point is that it’s perfectly clear for those in the know (i.e. experienced staff), but for those new to staff, it’s clear as mud.

We’ve currently got 20 people who would be considered “staff”, and as with any large community, real life gets in the way and so we probably have on average one or two new staff members a year. Becoming staff is daunting enough with those extra responsibilities/roles, and having to decode glyphs which have no obvious meaning (not to mention possible color blindness issues) worries me - I think the alternate view is more obvious on quick glance. I don’t have to remember which color means which, or what the order of the glyphs mean, or have to hover over the glyphs to get their meaning (which isn’t tablet friendly either).

---

<div class="post-metadata">

**Author:** ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)\
**Post date:** [2014年六月30日 09:21 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/6 "2014-06-30T09:21:18Z")

</div>

~~FYI I’ll be working on this.~~

This is now done 🐉

[https://github.com/discourse/discourse/commit/15120bb5832d49eb1d4cb6055c8b2d1986df5767](https://github.com/discourse/discourse/commit/15120bb5832d49eb1d4cb6055c8b2d1986df5767)

---

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2014年九月8日 03:15 UTC](https://meta.discourse.org/t/add-deleted-flag-suspension-counts-to-user-profile-for-staff/14944/7 "2014-09-08T03:15:03Z")

</div>


