-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create a paginated ngo redirections page
- Loading branch information
1 parent
1028d2b
commit 07a3419
Showing
17 changed files
with
638 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from django.conf import settings | ||
from django.contrib import admin | ||
from django.urls import path | ||
|
||
from donations.views.ngo_account import ( | ||
NgoDetailsView, | ||
NgoFormsView, | ||
NgoRedirectionsView, | ||
) | ||
|
||
admin.site.site_header = f"Admin | {settings.VERSION_LABEL}" | ||
|
||
|
||
urlpatterns = [ | ||
path("prezentare/", NgoDetailsView.as_view(), name="organization-presentation"), | ||
path("formulare/", NgoFormsView.as_view(), name="organization-forms"), | ||
path("redirectionari/", NgoRedirectionsView.as_view(), name="organization-redirections"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.