diff --git a/pyi2phosts/templates/base.html b/pyi2phosts/templates/base.html index 5b2aee4..fde5a26 100644 --- a/pyi2phosts/templates/base.html +++ b/pyi2phosts/templates/base.html @@ -25,10 +25,10 @@ diff --git a/pyi2phosts/templates/browse.html b/pyi2phosts/templates/browse.html index d17a54b..781beec 100644 --- a/pyi2phosts/templates/browse.html +++ b/pyi2phosts/templates/browse.html @@ -3,7 +3,7 @@ {% block header %}

{% trans "All active hosts in I2P" %} -rss

+rss {% endblock %} {% block content %} diff --git a/pyi2phosts/templates/index.html b/pyi2phosts/templates/index.html index 83ba822..11ea266 100644 --- a/pyi2phosts/templates/index.html +++ b/pyi2phosts/templates/index.html @@ -2,7 +2,7 @@ {% load i18n %} {% block content %} - {% url faq as faq_url %} + {% url 'faq' as faq_url %} {% blocktrans %}

About

{{ title }} is a domain name registration service for I2P. Hostnames in I2P aren't @@ -34,8 +34,8 @@

{% endblocktrans %} - {% url pyi2phosts.jump.views.jumper 'example.i2p' as jump_url %} - {% url pyi2phosts.jump.views.index as jump_index %} + {% url 'pyi2phosts.jump.views.jumper' 'example.i2p' as jump_url %} + {% url 'pyi2phosts.jump.views.index' as jump_index %} {% blocktrans %}

Jump service

{{ title }} also provides a jump service. For accessing hosts through it, @@ -48,7 +48,7 @@

{% endblocktrans %} - {% url pyi2phosts.postkey.views.addkey as addkey_url %} + {% url 'pyi2phosts.postkey.views.addkey' as addkey_url %} {% blocktrans %}

Registration service

If you are running an eepsite or another service and want a human-readable domain name diff --git a/pyi2phosts/templates/latest.html b/pyi2phosts/templates/latest.html index 2985139..7e807d1 100644 --- a/pyi2phosts/templates/latest.html +++ b/pyi2phosts/templates/latest.html @@ -5,5 +5,5 @@ {% blocktrans %}

Latest {{ hosts_count }} hosts added in {{ day_count }} days {% endblocktrans %} -rss

+rss {% endblock %}