diff options
author | Andrew Godwin | 2022-11-17 19:16:34 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 19:16:34 -0700 |
commit | 6adfdbabe0d44c17f32abc9d48a6e252e2a0792e (patch) | |
tree | 6644c5eeab7970a9f9b8d9540b7ebe28cc499331 /templates/activities/_menu.html | |
parent | 2a3690d1c148da5dd799052403ba7290e1fb7de0 (diff) | |
download | takahe-6adfdbabe0d44c17f32abc9d48a6e252e2a0792e.tar.gz takahe-6adfdbabe0d44c17f32abc9d48a6e252e2a0792e.tar.bz2 takahe-6adfdbabe0d44c17f32abc9d48a6e252e2a0792e.zip |
Add signup and password reset
Diffstat (limited to 'templates/activities/_menu.html')
-rw-r--r-- | templates/activities/_menu.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/activities/_menu.html b/templates/activities/_menu.html index a671712..6b40197 100644 --- a/templates/activities/_menu.html +++ b/templates/activities/_menu.html @@ -23,11 +23,11 @@ <i class="fa-solid fa-gear"></i> Settings </a> {% else %} - <a href="/local/" {% if current_page == "local" %}class="selected"{% endif %}> + <a href="{% url "local" %}" {% if current_page == "local" %}class="selected"{% endif %}> <i class="fa-solid fa-city"></i> Local Posts </a> <h3></h3> - <a href="/auth/signup/" {% if current_page == "signup" %}class="selected"{% endif %}> + <a href="{% url "signup" %}" {% if current_page == "signup" %}class="selected"{% endif %}> <i class="fa-solid fa-user-plus"></i> Create Account </a> {% endif %} |