Skip to content
Snippets Groups Projects
Commit 8370efec authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

add missing template

parent 2e962b2f
No related branches found
No related tags found
No related merge requests found
[% all_attributes = {} %]
[% FOREACH account IN accounts %]
[% template = account.profile() _ '.tt2' %]
[% PROCESS $template scope=account.scope() id=account.id() | trim %]
[% all_attributes.import(attributes) %]
[% END %]
[% attributes_list = all_attributes.keys.sort -%]
username,password,profile,[% attributes_list.join(',') %]
[%+ FOREACH account IN accounts %]
[% template = account.profile() _ '.tt2' %]
[% PROCESS $template scope=account.scope() id=account.id() | trim %]
[% account.internal_uid() %],
[% account.password() %],
[% account.profile() %],
[% FOREACH attribute IN attributes_list %]
[% attributes.$attribute.join(', ').quote('"') %],
[% END %]
[%+ END %]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment