You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
598 B
14 lines
598 B
from django.urls import path
|
|
from . import views
|
|
import init_image.views
|
|
|
|
urlpatterns = [
|
|
path("", views.upload_image, name="upload_image"),
|
|
path("gray/", views.page_gray, name="page_gray"),
|
|
path("black&white/", views.black_white, name="black_white"),
|
|
path("resize/", views.resize_picture, name="resize_picture"),
|
|
path("align_v/", views.alignement_vertical, name="alignement_vertical"),
|
|
path("align_h/", views.alignement_horizontal, name="alignement_horizontal"),
|
|
path("fusion/", views.fusion, name="fusion"),
|
|
path("animation/", views.animation, name="animation"),
|
|
] |