mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
repolist: make owner clickable to search
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
3cbbb8ea39
commit
a2b6b37175
@ -306,7 +306,13 @@ void cgit_print_repolist()
|
|||||||
html_link_close();
|
html_link_close();
|
||||||
html("</td><td>");
|
html("</td><td>");
|
||||||
if (ctx.cfg.enable_index_owner) {
|
if (ctx.cfg.enable_index_owner) {
|
||||||
|
html("<a href='");
|
||||||
|
html_attr(cgit_rooturl());
|
||||||
|
html("?q=");
|
||||||
|
html_url_arg(ctx.repo->owner);
|
||||||
|
html("'>");
|
||||||
html_txt(ctx.repo->owner);
|
html_txt(ctx.repo->owner);
|
||||||
|
html("</a>");
|
||||||
html("</td><td>");
|
html("</td><td>");
|
||||||
}
|
}
|
||||||
print_modtime(ctx.repo);
|
print_modtime(ctx.repo);
|
||||||
|
Loading…
Reference in New Issue
Block a user