Answers for "templates view in django"

1

django templateview

from django.urls import path
from django.views.generic import TemplateView

urlpatterns = [
    path('about/', TemplateView.as_view(template_name="about.html")),
]
Posted by: Guest on January-12-2020
0

django template in views.py

def post_note(request,id):
    post_id = request.GET['note']
    print(post_id)
    //sql insertion code,once its done i want to notify to the front end..print some alert message.
    return render(request, './profile.html')
Posted by: Guest on December-28-2020

Code answers related to "templates view in django"

Python Answers by Framework

Browse Popular Code Answers by Language