legal info in base

This commit is contained in:
Christoph J. Scherr 2023-06-02 15:49:37 +02:00
parent 470707420b
commit ded6e7bb51
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
2 changed files with 4 additions and 1 deletions

View File

@ -70,6 +70,9 @@
Links
</h6>
<p>
<a href="{% url 'start:legal' %}" class="text-reset">{% translate "Legal Info" %}</a>
</p>
<p>
<a href="https://github.com/plexsheep" class="text-reset">GitHub</a>
</p>
<p>

View File

@ -6,7 +6,7 @@ app_name: str = "start"
urlpatterns = [
path("", views.Index.as_view(), name="index"),
path("search/", views.MainSearch.as_view(), name="search"),
path("legal/", views.LegalInfo.as_view(), name="legal_info"),
path("legal/", views.LegalInfo.as_view(), name="legal"),
path("professional/", views.LegalInfo.as_view(), name="professional"),
path('language/activate/<language_code>/', views.ActivateLanguage.as_view(), name='activate_language'),
]