format
This commit is contained in:
parent
34b608c4b7
commit
98aca16e73
1 changed files with 2 additions and 2 deletions
|
@ -76,10 +76,10 @@ class RatingsTheme extends Themelet
|
|||
P("Available ratings:")
|
||||
);
|
||||
|
||||
$table = TABLE(TR(TH("Name"),TH("Search Term"),TH("Abbreviation")));
|
||||
$table = TABLE(TR(TH("Name"), TH("Search Term"), TH("Abbreviation")));
|
||||
|
||||
foreach ($ratings as $rating) {
|
||||
$table->appendChild(TR(TD($rating->name),TD($rating->search_term),TD($rating->code)));
|
||||
$table->appendChild(TR(TD($rating->name), TD($rating->search_term), TD($rating->code)));
|
||||
}
|
||||
|
||||
$output->appendChild($table);
|
||||
|
|
Reference in a new issue