More on PES

This commit is contained in:
Tim Lorsbach
2026-04-15 21:14:47 +02:00
parent 349877b5e3
commit ca0508d96a
11 changed files with 544 additions and 34 deletions

8
bayer/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.urls import re_path
from . import views as v
urlpatterns = [
re_path(r"^depict_pes$", v.visualize_pes, name="depict_pes"),
]