Exemple #1
0
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
#

from django.urls import path

from weblate.legal.views import (
    ContractsView,
    CookiesView,
    LegalView,
    PrivacyView,
    SecurityView,
    TermsView,
    tos_confirm,
)

urlpatterns = [
    path("", LegalView.as_view(), name="index"),
    path("terms/", TermsView.as_view(), name="terms"),
    path("cookies/", CookiesView.as_view(), name="cookies"),
    path("security/", SecurityView.as_view(), name="security"),
    path("privacy/", PrivacyView.as_view(), name="privacy"),
    path("contracts/", ContractsView.as_view(), name="contracts"),
    path("confirm/", tos_confirm, name="confirm"),
]
Exemple #2
0
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
#

from django.conf.urls import url

from weblate.legal.views import (
    CookiesView,
    LegalView,
    PrivacyView,
    SecurityView,
    TermsView,
    tos_confirm,
)

urlpatterns = [
    url(r'^$', LegalView.as_view(), name='index'),
    url(r'^terms/$', TermsView.as_view(), name='terms'),
    url(r'^cookies/$', CookiesView.as_view(), name='cookies'),
    url(r'^security/$', SecurityView.as_view(), name='security'),
    url(r'^privacy/$', PrivacyView.as_view(), name='privacy'),
    url(r'^confirm/$', tos_confirm, name='confirm'),
]
Exemple #3
0
    tos_confirm,
)

urlpatterns = [
    url(
        r'^$',
        LegalView.as_view(),
        name='index',
    ),
    url(
        r'^terms/$',
        TermsView.as_view(),
        name='terms',
    ),
    url(
        r'^cookies/$',
        CookiesView.as_view(),
        name='cookies',
    ),
    url(
        r'^security/$',
        SecurityView.as_view(),
        name='security',
    ),
    url(
        r'^confirm/$',
        tos_confirm,
        name='confirm',
    ),
]
Exemple #4
0
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
#

from django.conf.urls import url

from weblate.legal.views import (
    CookiesView,
    LegalView,
    PrivacyView,
    SecurityView,
    TermsView,
    tos_confirm,
)

urlpatterns = [
    url(r"^$", LegalView.as_view(), name="index"),
    url(r"^terms/$", TermsView.as_view(), name="terms"),
    url(r"^cookies/$", CookiesView.as_view(), name="cookies"),
    url(r"^security/$", SecurityView.as_view(), name="security"),
    url(r"^privacy/$", PrivacyView.as_view(), name="privacy"),
    url(r"^confirm/$", tos_confirm, name="confirm"),
]