diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-21 18:14:53 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-21 18:14:53 -0500 |
commit | 818028562d5d99482c781457e0219f7b5afe4e2c (patch) | |
tree | 0e52a50aaae1c997da346d13328603eee9e7cbf3 /templates | |
parent | 753329659e3edf725881bbfd89d7c25034e41c2f (diff) |
Fix self-closing anchor links for Chrome
Apparently it can't parse a very normal looking <a/> because they forgot
one of their original purposes doesn't require a body. Awesome.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/mirrors/status.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html index 5743e47b..1e7e38a5 100644 --- a/templates/mirrors/status.html +++ b/templates/mirrors/status.html @@ -44,7 +44,7 @@ <p>The last mirror check ran at {{ last_check|date:'Y-m-d H:i' }} UTC.</p> - <a name="outofsync"/> + <a name="outofsync" id="outofsync"></a> <h3>Out of Sync Mirrors</h3> {% with bad_urls as urls %} {% with 'outofsync_mirrors' as table_id %} @@ -52,7 +52,7 @@ {% endwith %} {% endwith %} - <a name="successful"/> + <a name="successful" id="successful"></a> <h3>Successfully Syncing Mirrors</h3> {% with good_urls as urls %} {% with 'successful_mirrors' as table_id %} @@ -60,7 +60,7 @@ {% endwith %} {% endwith %} - <a name="errorlog"/> + <a name="errorlog" id="errorlog"></a> <h3>Mirror Syncing Error Log</h3> <table id="errorlog_mirrors" class="results"> <thead> |