diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-10 21:01:45 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-10 21:01:45 +0200 |
commit | 87ccbac9e2125a13ae08198581e113afe1cae793 (patch) | |
tree | d8b7d4bcdb8bd0d68d1a6ff112fa11b20be59dcc | |
parent | Basic functions of web working (diff) | |
download | collagen-87ccbac9e2125a13ae08198581e113afe1cae793.tar.gz collagen-87ccbac9e2125a13ae08198581e113afe1cae793.tar.bz2 collagen-87ccbac9e2125a13ae08198581e113afe1cae793.zip |
Make package listing more visible
-rw-r--r-- | web/templates/list-packages-with-file.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/templates/list-packages-with-file.html b/web/templates/list-packages-with-file.html index 1b368f5..5013d1d 100644 --- a/web/templates/list-packages-with-file.html +++ b/web/templates/list-packages-with-file.html @@ -3,7 +3,10 @@ {% block main %} {% for cpv in cpvs %} -<a href="/collagen/view/package/{{cpv}}">{{cpv}}</a> <br /> +<div class="compileinfo-{% cycle odd,even %}"> + <a href="/collagen/view/package/{{cpv}}">{{cpv}}</a> <br /> +</div> + {% endfor %} {% endblock %} |