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.
ngcp-panel/share/templates/header/rules_list.tt

51 lines
2.6 KiB

[% site_config.title = c.loc('Header Rules for [_1]', hm_set_result.name) -%]
[%
helper.name = c.loc('Header Rules');
helper.identifier = 'header_rules';
helper.messages = messages;
helper.dt_columns = hm_rule_dt_columns;
helper.length_change = 1;
helper.close_target = close_target;
helper.create_flag = create_flag;
helper.edit_flag = edit_flag;
helper.form_object = form;
helper.ajax_uri = c.uri_for_action( "/header/rules_ajax", [c.req.captures.0] );
UNLESS c.user.read_only;
FILTER null;
backuritmp=c.req.uri;
backuritmp.query_param_delete('back');
backuritmp.query_param_delete('move');
backuritmp.query_param_delete('where');
END;
helper.top_buttons = [
{ name = c.loc('Header Rule Sets'), uri = c.uri_for('/header/'), icon = 'icon-list' },
{ name = c.loc('Create Header Rule'), uri = c.uri_for_action('/header/rules_create', [c.req.captures.0]), icon = 'icon-star' },
];
helper.dt_buttons = [
{ uri = "/header/" _ hm_set_result.id _ "/rules/?move='+full.id+'&where=up", class = 'btn-small btn-primary', icon = 'icon-arrow-up' },
{ uri = "/header/" _ hm_set_result.id _ "/rules/?move='+full.id+'&where=down", class = 'btn-small btn-primary', icon = 'icon-arrow-down' },
{ name = c.loc('Edit'), uri = "/header/" _ hm_set_result.id _ "/rules/'+full.id+'/edit", class = 'btn-small btn-primary', icon = 'icon-edit' },
{ name = c.loc('Conditions'), uri = "/header/"_ hm_set_result.id _ "/rules/'+full.id+'/conditions", class = 'btn-small btn-tertiary', icon = 'icon-glass' },
{ name = c.loc('Actions'), uri = "/header/"_ hm_set_result.id _ "/rules/'+full.id+'/actions", class = 'btn-small btn-tertiary', icon = 'icon-play' },
{ name = c.loc('Delete'), uri = "/header/" _ hm_set_result.id _ "/rules/'+full.id+'/delete", class = 'btn-small btn-secondary', icon = 'icon-trash' },
];
ELSE;
helper.top_buttons = [
{ name = c.loc('Header Rule Sets'), uri = c.uri_for('/header/'), icon = 'icon-list' },
];
helper.dt_buttons = [
{ name = c.loc('Conditions'), uri = "/header/"_ hm_set_result.id _ "/rules/'+full.id+'/conditions", class = 'btn-small btn-tertiary', icon = 'icon-glass' },
{ name = c.loc('Actions'), uri = "/header/"_ hm_set_result.id _ "/rules/'+full.id+'/actions", class = 'btn-small btn-tertiary', icon = 'icon-play' },
];
END;
PROCESS 'helpers/datatables.tt';
-%]
[% # vim: set tabstop=4 syntax=html expandtab: -%]