Skip to content
Snippets Groups Projects
Unverified Commit 4e98cb02 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Add RSS link to the evaluation page.

* src/cuirass/templates.scm (evaluation-info-table): Add RSS link.
parent 7cf304f7
No related branches found
No related tags found
No related merge requests found
......@@ -458,7 +458,14 @@ system whose names start with " (code "guile-") ":" (br)
(define (evaluation-info-table name evaluations id-min id-max)
"Return HTML for the EVALUATION table NAME. ID-MIN and ID-MAX are
global minimal and maximal id."
`((p (@ (class "lead")) "Evaluations of " ,name)
`((p (@ (class "lead")) "Evaluations of " ,name
(a (@ (href "/events/rss/?specification=" ,name))
(button (@ (class "btn btn-outline-warning float-right")
(type "button"))
(span (@(class "oi oi-rss text-warning align-right")
(title "RSS")
(aria-hidden "true"))
""))))
(table
(@ (class "table table-sm table-hover table-striped"))
,@(if (null? evaluations)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment