comparison scid/theme.c @ 41:00b9af607524

scid: implement /jobresults/id page
author David Demelier <markand@malikania.fr>
date Tue, 09 Aug 2022 14:52:34 +0200
parents 752bb1cd2dd8
children 6854efe15210
comparison
equal deleted inserted replaced
40:752bb1cd2dd8 41:00b9af607524
358 358
359 return call(json, "onPageIndex"); 359 return call(json, "onPageIndex");
360 } 360 }
361 361
362 char * 362 char *
363 theme_page_jobresults(const json_t *json)
364 {
365 assert(json);
366
367 return call(json, "onPageJobresults");
368 }
369
370 char *
363 theme_page_status(int status, const char *message) 371 theme_page_status(int status, const char *message)
364 { 372 {
365 json_t *doc; 373 json_t *doc;
366 char *ret; 374 char *ret;
367 375