• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

liqd / adhocracy-plus / 18908688697

29 Oct 2025 12:59PM UTC coverage: 44.622% (-44.5%) from 89.135%
18908688697

Pull #2986

github

web-flow
Merge 1dfde8ee7 into 445e1d498
Pull Request #2986: Draft: Speed up Github Ci Tests

3012 of 6750 relevant lines covered (44.62%)

0.45 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/apps/organisations/urls.py
1
from django.urls import re_path
×
2
from django.views.generic import TemplateView
×
3

4
from . import views
×
5
from .sitemaps import organisation_sitemap_index
×
6
from .sitemaps import organisation_sitemap_projects
×
7
from .sitemaps import organisation_sitemap_static
×
8

9
urlpatterns = [
×
10
    re_path(
11
        r"^(?P<organisation_slug>[-\w_]+)/$",
12
        views.OrganisationView.as_view(),
13
        name="organisation",
14
    ),
15
    re_path(
16
        r"^(?P<organisation_slug>[-\w_]+)/information/$",
17
        views.InformationView.as_view(),
18
        name="organisation-information",
19
    ),
20
    re_path(
21
        r"^(?P<organisation_slug>[-\w_]+)/imprint/$",
22
        views.ImprintView.as_view(),
23
        name="organisation-imprint",
24
    ),
25
    re_path(
26
        r"^(?P<organisation_slug>[-\w_]+)/sitemap.xml$",
27
        organisation_sitemap_index,
28
        name="organisation-sitemap-index",
29
    ),
30
    re_path(
31
        r"^(?P<organisation_slug>[-\w_]+)/sitemap-static.xml$",
32
        organisation_sitemap_static,
33
        name="organisation-sitemap-static",
34
    ),
35
    re_path(
36
        r"^(?P<organisation_slug>[-\w_]+)/sitemap-projects.xml$",
37
        organisation_sitemap_projects,
38
        name="organisation-sitemap-projects",
39
    ),
40
    re_path(
41
        r"^(?P<organisation_slug>[-\w_]+)/robots.txt$",
42
        TemplateView.as_view(template_name="robots.txt", content_type="text/plain"),
43
        name="robots_file",
44
    ),
45
    re_path(
46
        r"^(?P<organisation_slug>[-\w_]+)/terms-of-use/$",
47
        views.TermsOfUseView.as_view(),
48
        name="organisation-terms-of-use",
49
    ),
50
    re_path(
51
        r"^(?P<organisation_slug>[-\w_]+)/netiquette/$",
52
        views.NetiquetteView.as_view(),
53
        name="organisation-netiquette",
54
    ),
55
    re_path(
56
        r"^(?P<organisation_slug>[-\w_]+)/data-protection/$",
57
        views.DataProtectionView.as_view(),
58
        name="organisation-data-protection",
59
    ),
60
]
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc