You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1003 B

13 years ago
module DomainsHelper
13 years ago
def domain_list_row_class(record)
cannot?(:crud_permissions, record) ? "shared-domain" : ''
end
# Indents and dedents to create a tree structure,
# assuming that the records are sorted in preorder.
# Adds a visual cue if the record is shared via permissions feature.
def domain_name_column(record)
elements = []
depth = record.depth
if depth > 1
(depth - 2).times do # indent
13 years ago
elements << '<span class="ui-icon ui-icon-blank"></span>'
end
elements << '<span class="ui-icon ui-icon-carat-1-sw"></span>'
end
elements << record.name
13 years ago
unless can?(:crud_permissions, record)
who = "<strong>#{record.user.name}</strong> #{mail_to(record.user.email)}"
elements << <<-HTM
<i class="icon-share" rel="popover" data-original-title="Shared domain"
data-content="This domain was shared with you by #{h who}"></i>
HTM
end
@previous_record = record
13 years ago
elements.join.html_safe
end
13 years ago
end