1) Create New App For Si python manage.py startapp siapp 2) Create urls.py under app:- from django.urls import path from . import views urlpatterns = [ path('', views.index, name='index'), ] 3) Create templates folder under app and subfolder using appname and create .html design form element using Html <form action="silogic" method="get"> ... </form> 4) edit app url and define logic method from django.urls import path from . import views urlpatterns = [ path('', views.index, name='index'), path('silogic', views.silogic, name='silogic'), ] 5 define views.py two method first for load and second for action def index(request): return render(request,"appname/htmlfilename") def silogic(reque...
Hi, I'm Shiva Gautam. With over 15 years of diverse experience in various IT domains, I am now an entrepreneur focusing on both training and software development. My expertise spans across multiple technologies, and I've authored numerous articles on subjects including Java, Python, REACT, NODE, ANGULAR, Cloud, software testing, Django framework, C#, Flutter, Salesforce, Ruby on Rails, .NET, and more. For additional information, please visit shivaconceptsolution.com and kangaroosoftware.net.