Skip to content

Commit

Permalink
about the project bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pirnr81 committed Oct 21, 2022
1 parent c92ee28 commit f6b53de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion djangobaseproject/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
path('admin/', admin.site.urls),
url(r'^browsing/', include('browsing.urls', namespace='browsing')),
url(r'^netvis/', include('netvis.urls', namespace="netvis")),
url(r'^info/', include('infos.urls', namespace='infos')),
url(r'^info/', include('infos.urls', namespace='info')),
url(r'^archiv/', include('archiv.urls', namespace='archiv')),
url(r'^archiv-ac/', include('archiv.dal_urls', namespace='archiv-ac')),
url(r'^', include('webpage.urls', namespace='webpage')),
Expand Down
3 changes: 3 additions & 0 deletions infos/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from django.contrib import admin
from .models import AboutTheProject


# Register your models here.
admin.site.register(AboutTheProject)

0 comments on commit f6b53de

Please sign in to comment.