From 6b1fde7e9a450ae8e4835f7e8c2ba1f398e78c1f Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Thu, 21 May 2015 04:14:10 -0400 Subject: [PATCH] Merge remote-tracking branch 'ispc/master' --- interface/web/dashboard/dashlets/templates/modules.htm | 20 ++++++++++++++------ 1 files changed, 14 insertions(+), 6 deletions(-) diff --git a/interface/web/dashboard/dashlets/templates/modules.htm b/interface/web/dashboard/dashlets/templates/modules.htm index 03fb8cb..0f60b1b 100644 --- a/interface/web/dashboard/dashlets/templates/modules.htm +++ b/interface/web/dashboard/dashlets/templates/modules.htm @@ -1,10 +1,18 @@ <h2>{tmpl_var name='available_modules_txt'}</h2> - <div style="width:350px;"> + <div style='margin: 0 auto;'> + <ul class='modules clear'> <tmpl_loop name='modules'> - <div class="dashboard-modules {tmpl_var name='modules_name'}"> - <a href="#" onclick="capp('{tmpl_var name='modules_name'}')"> - {tmpl_var name='modules_title'} - </a> - </div> + <li> + <div class='clear'> + <div class='icon icon-{tmpl_var name='modules_name'}'></div> + <div class='left'> + <div class='title'>{tmpl_var name='modules_title'}</div> + </div> + </div> + <div class='btn btn-default button'> + <a href='#' data-capp='{tmpl_var name="modules_name"}'>Go to {tmpl_var name='modules_title'}</a> + </div> + </li> </tmpl_loop> + </ul> </div> \ No newline at end of file -- Gitblit v1.9.1