| 367 | } |
| 368 | |
| 369 | std::string GroupHeaderRowHtml(const std::string& name, std::size_t index) |
| 370 | { |
| 371 | const std::string display = name.empty() ? ("Group " + std::to_string(index)) : name; |
| 372 | return "<tr><td colspan='5'><b>" + EscapeHtml(display) + "</b></td></tr>"; |
| 373 | } |
| 374 | |
| 375 | } // namespace |
| 376 |
no test coverage detected