diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-25 18:59:34 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-25 18:59:34 -0400 |
commit | 5209122f1de7a0185f2a6fd44e24ff2f4858883d (patch) | |
tree | 15e12f2231c712c6ad45953f11d0cf937bb38116 /hyperkitty/templates/index.html | |
parent | c7178cfcc107c295398162bcf184d2421c5f92f8 (diff) | |
download | hyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.tar.gz hyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.tar.xz hyperkitty-5209122f1de7a0185f2a6fd44e24ff2f4858883d.zip |
Hard coded URLs fix on index page
Diffstat (limited to 'hyperkitty/templates/index.html')
-rw-r--r-- | hyperkitty/templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 87ba148..3d312a4 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -8,8 +8,8 @@ {% for mlist in lists %} <tr> <td>{{ mlist }}</td> - <td><a href="/list/{{mlist}}"> Overview </a></td> - <td><a href="/archives/{{mlist}}"> Archives </a></td> + <td><a href="{% url list_overview mlist_fqdn=mlist %}"> Overview </a></td> + <td><a href="{% url archives mlist_fqdn=mlist %}"> Archives </a></td> </tr> {% endfor %} </tbody> |