Skip to content
Snippets Groups Projects
Select Git revision
  • b7462e47e70c50ced0da47076872e4424d288ff5
  • main default protected
  • improve-handling
  • 20-user-should-be-able-to-specify-a-min-and-max-value-which-raw-sensor-distances-should-be-recorded
  • 5-reconnect-after-a-connection-los
  • debug-app-id
  • ci-test
  • 1.0.10
  • 1.0.9
  • 1.0.8
  • 1.0.7
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0+1
18 results

obs_list_upload_page.dart

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    urls.py 286 B
    from django.urls import include, path
    
    from . import views
    
    app_name = "poll"
    
    urlpatterns = [
        path(
            "<slug:event_slug>/poll/",
            include(
                [
                    path("", views.PreferencePollCreateView.as_view(), name="poll"),
                ]
            ),
        ),
    ]