comparison ajax.php @ 83:4d32e870dda7

Restore the old way.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 17 Oct 2013 22:44:41 +0300
parents a071dacdcfc5
children 32c4654aad50
comparison
equal deleted inserted replaced
82:a071dacdcfc5 83:4d32e870dda7
199 if ($type == "attendees") 199 if ($type == "attendees")
200 { 200 {
201 echo 201 echo
202 "<table class=\"attendees\">\n". 202 "<table class=\"attendees\">\n".
203 " <tr>\n". 203 " <tr>\n".
204 " <th class=\"rname\">Name</th>\n". 204 " <th class=\"name\">Name</th>\n".
205 " <th class=\"groups\">Groups</th>\n".
206 " <th class=\"regtime\">Registered</th>\n".
205 " <th class=\"oneliner\">Oneliner</th>\n". 207 " <th class=\"oneliner\">Oneliner</th>\n".
206 " <th class=\"email\">E-mail</th>\n". 208 " <th class=\"email\">E-mail</th>\n".
207 " <th>Actions</th>\n". 209 " <th>Actions</th>\n".
208 " <th class=\"vkey\">Vote key</th>\n".
209 " <th class=\"vactive\">Active</th>\n".
210 " </tr>\n"; 210 " </tr>\n";
211 $row = 0; 211 $row = 0;
212 foreach ($res as $item) 212 foreach ($res as $item)
213 stPrintAttendee($item, $row++, TRUE); 213 stPrintAttendee($item, $row++, TRUE);
214 214