Skip to content

Commit

Permalink
error icons
Browse files Browse the repository at this point in the history
  • Loading branch information
GayLaurent committed Jan 28, 2016
1 parent 428cb37 commit 459f41c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lucterios/contacts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Account(XferContainerCustom):

def fillresponse(self):
img = XferCompImage('img')
img.set_value('lucterios.contacts/images/account.png')
img.set_value(get_icon_path('lucterios.contacts/images/account.png'))
img.set_location(0, 0, 1, 2)
self.add_component(img)
lab = XferCompLabelForm("title")
Expand Down Expand Up @@ -149,7 +149,7 @@ class Configuration(XferContainerCustom):
def _fill_functions(self):
self.new_tab(_("Functions and responsabilities"))
img = XferCompImage('imgFunction')
img.set_value('lucterios.contacts/images/function.png')
img.set_value(get_icon_path('lucterios.contacts/images/function.png'))
img.set_location(0, 0)
self.add_component(img)
img = XferCompLabelForm('titleFunction')
Expand All @@ -172,7 +172,7 @@ def _fill_functions(self):
def _fill_structuretype(self):
self.new_tab(_("Structure type"))
img = XferCompImage('imgType')
img.set_value('lucterios.contacts/images/category.png')
img.set_value(get_icon_path('lucterios.contacts/images/category.png'))
img.set_location(0, 0)
self.add_component(img)
img = XferCompLabelForm('titleType')
Expand Down

0 comments on commit 459f41c

Please sign in to comment.