|
@@ -255,6 +255,9 @@ jQuery(function($){
|
|
|
item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);
|
|
|
item.chkbox = '<input type="checkbox" data-id="domain" name="multi_select" value="' + encodeURIComponent(item.domain_name) + '" />';
|
|
|
item.action = '<div class="btn-group">';
|
|
|
+ if (item.backupmx_int == 1) {
|
|
|
+ item.domain_name = '<span class="glyphicon glyphicon-export"></span> ' + item.domain_name;
|
|
|
+ }
|
|
|
if (role == "admin") {
|
|
|
item.action += '<a href="/edit/domain/' + encodeURIComponent(item.domain_name) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +
|
|
|
'<a href="#" data-action="delete_selected" data-id="single-domain" data-api-url="delete/domain" data-item="' + encodeURIComponent(item.domain_name) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>';
|