Browse Source

Use mark_safe to use html in users list admin

pull/166/head
Mounir 7 years ago
committed by GitHub
parent
commit
f9cc65c152
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      hc/accounts/admin.py

+ 2
- 0
hc/accounts/admin.py View File

@ -96,6 +96,7 @@ class HcUserAdmin(UserAdmin):
ordering = ["-id"]
@mark_safe
def engagement(self, user):
result = ""
num_checks = Check.objects.filter(user=user).count()
@ -119,6 +120,7 @@ class HcUserAdmin(UserAdmin):
engagement.allow_tags = True
@mark_safe
def checks(self, user):
url = reverse("hc-switch-team", args=[user.username])
return "<a href='%s'>Checks</a>" % url


Loading…
Cancel
Save