Add CMS info to webapp table

This commit is contained in:
Marian Steinbach 2018-04-20 23:36:31 +02:00
parent 94241ba380
commit 84351f6b1d
2 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,7 @@
<th scope="col"><abbr title="Site nutzt HTTP-Verschlüsselung">HTTPS</abbr></th>
<th scope="col">Feed</th>
<th scope="col">Screenshots</th>
<th scope="col">CMS</th>
</tr>
</thead>
<tbody>

View File

@ -96,6 +96,9 @@ $(function(){
}
row.append('<td class="'+ (screenshot ? 'good' : 'bad') +' text-center">' + (screenshot ? screenshot : '❌') + '</td>');
// cms
row.append('<td class="text text-center">' + (item.details.cms ? item.details.cms : '') + '</td>');
tbody.append(row);
});