diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-06-12 21:47:10 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-06-12 21:47:10 +0000 |
commit | d69e518feba786a8ef25b19d8898eb853c51d94e (patch) | |
tree | ed44cae093d077c94ab0776f169419fdbfec888b /tmpl/advisory.html | |
parent | 52b02218d8804e66d83db517fcaadd45d9d857a7 (diff) | |
download | mgaadvisories-d69e518feba786a8ef25b19d8898eb853c51d94e.tar mgaadvisories-d69e518feba786a8ef25b19d8898eb853c51d94e.tar.gz mgaadvisories-d69e518feba786a8ef25b19d8898eb853c51d94e.tar.bz2 mgaadvisories-d69e518feba786a8ef25b19d8898eb853c51d94e.tar.xz mgaadvisories-d69e518feba786a8ef25b19d8898eb853c51d94e.zip |
Add %basename variable
Diffstat (limited to 'tmpl/advisory.html')
-rw-r--r-- | tmpl/advisory.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmpl/advisory.html b/tmpl/advisory.html index f9a7e63..177933a 100644 --- a/tmpl/advisory.html +++ b/tmpl/advisory.html @@ -15,7 +15,7 @@ [% FOREACH rel IN adv.src.keys.sort %] [% sep %] [% SET sep = ', ' %] - <a href="[% rel %].html">[% rel %]</a> + <a href="[% basename.rel(rel) %].html">[% rel %]</a> [% END %] <br /> @@ -25,7 +25,7 @@ [% FOREACH cve IN adv.CVE %] [% sep %] [% SET sep = ', ' %] - <a href="[% cve %].html">[% cve %]</a> + <a href="[% basename.CVE(cve) %].html">[% cve %]</a> [% END %] [% END %] |