Skip to content

Commit 628b7b2

Browse files
committedMar 27, 2024·
dosportal updates
1 parent c5abd47 commit 628b7b2

File tree

55 files changed

+809
-985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+809
-985
lines changed
 

‎DOSPORTAL/PART_organizations/__init__.py

Whitespace-only changes.

‎DOSPORTAL/PART_organizations/urls.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from django.contrib import admin
2+
from django.urls import path, include
3+
from django.views.generic.base import TemplateView
4+
import uuid
5+
6+
from . import views_organizations
7+
8+
urlpatterns = [
9+
10+
11+
path(r'<uuid:pk>', views_organizations.organization_profile, name='organization-detail'),
12+
path(r'<slug:slug>', views_organizations.organization_profile, name='organization-detail'),
13+
path(r'', views_organizations.organization_profile, name='organization'),
14+
15+
]

0 commit comments

Comments
 (0)
Please sign in to comment.