-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
euth/contrib: overwrite module django admin to redirect to project
1 parent
651a0c1
commit f2eb7b3
Showing
1 changed file
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from django.contrib import admin | ||
from django.urls import reverse | ||
|
||
from adhocracy4.modules import models | ||
from adhocracy4.modules.admin import ModuleAdmin as A4ModuleAdmin | ||
|
||
|
||
class ModuleAdmin(A4ModuleAdmin): | ||
|
||
def view_on_site(self, obj): | ||
return reverse('project-detail', args=[str(obj.project.slug)]) | ||
|
||
|
||
admin.site.unregister(models.Module) | ||
admin.site.register(models.Module, ModuleAdmin) |