Add password reset icon

This commit is contained in:
Roberto Rosario
2012-09-11 04:23:06 -04:00
parent 231018c34c
commit 395b8564d4
4 changed files with 7 additions and 4 deletions

View File

@@ -1,13 +1,14 @@
from __future__ import absolute_import
from icons.literals import (USER, USER_ADD, USER_EDIT, USER_DELETE,
GROUP, GROUP_ADD, GROUP_EDIT, GROUP_DELETE)
GROUP, GROUP_ADD, GROUP_EDIT, GROUP_DELETE, LOCK_EDIT)
from icons import Icon
icon_user = Icon(USER)
icon_user_add = Icon(USER_ADD)
icon_user_edit = Icon(USER_EDIT)
icon_user_delete = Icon(USER_DELETE)
icon_set_password = Icon(LOCK_EDIT)
icon_group = Icon(GROUP)
icon_group_add = Icon(GROUP_ADD)