diff options
author | Manuel Munz <freifunk@somakoma.de> | 2010-11-23 23:40:54 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2010-11-23 23:40:54 +0000 |
commit | a411c56c8776a7f9844a9c4baebfb08cec00afd7 (patch) | |
tree | 5a857f570701280f6beb5aab2b2ef9c82349f2a4 /modules/freifunk | |
parent | a0cc210a688db0e68719ffe10c2fc94415ddd96d (diff) |
modules/freifunk/services: Use cbi table style
Diffstat (limited to 'modules/freifunk')
-rw-r--r-- | modules/freifunk/luasrc/view/freifunk-services/services.htm | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/modules/freifunk/luasrc/view/freifunk-services/services.htm b/modules/freifunk/luasrc/view/freifunk-services/services.htm index 941f85591..650ef43a4 100644 --- a/modules/freifunk/luasrc/view/freifunk-services/services.htm +++ b/modules/freifunk/luasrc/view/freifunk-services/services.htm @@ -45,36 +45,36 @@ function fetch_services() return tables end - %> <% if has_services then %> +<div class="cbi-map"> <h2><a id="content" name="content"><%:Services%></a></h2> - <br /> - - <table class="smalltext" cellspacing="0" cellpadding="6"> - <tr> - <th><%:Url%></th> - <th><%:Source%></th> - </tr> - - <% - table=fetch_services() + <div class="cbi-map-descr"/> + <div class="cbi-section"> + <div class="cbi-section-node"> + <table class="cbi-section-table"> + <tr class="cbi-section-table-titles"> + <th class="cbi-section-table-cell"><%:Url%></th> + <th class="cbi-section-table-cell"><%:Source%></th> + </tr> + + <% table=fetch_services() + local i = 1 for k, line in ipairs(table) do - local field = {} - -- split line at # and |, 1=url, 2=proto, 3=description, 4=source - local field = luci.util.split(line, "[#|]", split, true) - %> - <tr><td> - <a href="<%=field[1]%>"><%=field[3]%></a> - </td> - <td> - <%=field[4]%> - </td> - </tr> + local field = {} + -- split line at # and |, 1=url, 2=proto, 3=description, 4=source + local field = luci.util.split(line, "[#|]", split, true) %> + <tr class="cbi-section-table-row cbi-rowstyle-<%=i%>"> + <td class="cbi-section-table-cell"><a href="<%=field[1]%>"><%=field[3]%></a></td> + <td class="cbi-section-table-cell"><%=field[4]%></td> + </tr> + <% if i == 1 then i = 0 elseif i == 0 then i = 1 end %> <%end%> - - </table> + </table> + </div> + </div> + </div> <br /> <%=last_update%> |