Veiko Aasa 296f6dbe85
i2p: New style app page layout
Get rid of tabs in the app page.

Tests performed:
  - enable/disable app
  - check that links to the external site work
  - check that links to the external site are disabled if app is disabled
  - i2p functional tests pass

Signed-off-by: Veiko Aasa <veiko17@disroot.org>
2020-03-06 15:26:40 -08:00

10 lines
228 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
URLs for the I2P module.
"""
from django.conf.urls import url
from plinth.modules.i2p import views
urlpatterns = [url(r'^apps/i2p/$', views.I2PAppView.as_view(), name='index')]