diff options
author | 2019-12-19 14:50:59 +1100 | |
---|---|---|
committer | 2019-12-19 14:50:59 +1100 | |
commit | 9334bf4eae425551b8a575ed5a345b2b43dae42f (patch) | |
tree | d18e432658b5ca3a61dfbf0a77a34628d173e388 /scripts/minimaws/lib/htmltmpl.py | |
parent | e665b95e65f853b4a82e75f55ac354035852d41f (diff) |
minimaws: display software lists for selected slot options on machine pages
Diffstat (limited to 'scripts/minimaws/lib/htmltmpl.py')
-rw-r--r-- | scripts/minimaws/lib/htmltmpl.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/minimaws/lib/htmltmpl.py b/scripts/minimaws/lib/htmltmpl.py index 6a16f305d8d..7c9246865b1 100644 --- a/scripts/minimaws/lib/htmltmpl.py +++ b/scripts/minimaws/lib/htmltmpl.py @@ -75,6 +75,7 @@ MACHINE_SOFTWARELISTS_TABLE_PROLOGUE = string.Template( '<table id="tbl-softwarelists">\n' \ ' <thead>\n' \ ' <tr>\n' \ + ' <th>Card</th>\n' \ ' <th>Short name</th>\n' \ ' <th>Description</th>\n' \ ' <th>Status</th>\n' \ @@ -87,7 +88,8 @@ MACHINE_SOFTWARELISTS_TABLE_PROLOGUE = string.Template( ' <tbody>\n') MACHINE_SOFTWARELISTS_TABLE_ROW = string.Template( - ' <tr>\n' \ + ' <tr id="row-softwarelists-${rowid}">\n' \ + ' <td></td>\n' \ ' <td><a href="${href}">${shortname}</a></td>\n' \ ' <td><a href="${href}">${description}</a></td>\n' \ ' <td>${status}</td>\n' \ |