NovemforNovemnovem.hashnode.net·Sep 9, 2022Forms in DjangoForms are a way of getting user inputs, processing them and making necessary actions that are required. In a nutshell, there are two main http methods that are used when dealing with forms, this include GET and POST and are typically inputted in the ...Discuss·28 likes·117 readsDjango
Saurav SharmaforPython Django Blogselftaughtdev.hashnode.net·Dec 14, 2022Deploy Django App over Ubuntu VPS with Gunicorn + Nginix + PostgreSQLIn this tutorial, we will deploy a Django app over Ubuntu VPS with Gunicorn + Nginix. We are going to use Vultr VPS for this tutorial. You can use any other VPS provider as well. 1. Create a new user adduser yourusername usermod -aG sudo youruserna...Discuss·20 likes·961 readsdeployment
Saurav SharmaforPython Django Blogselftaughtdev.hashnode.net·Dec 17, 2022Boost your Django skills: Learn how to use super()The super() keyword is a useful tool in Django, a high-level Python web framework, for working with inheritance in classes. It allows a subclass to refer to its parent class, allowing the subclass to inherit attributes and methods from the parent cla...Discuss·20 likes·675 readsDjango
Don Esromfordonesrom.hashnode.net·Apr 11, 2023How to set up Django built-in Registration in 2023Setting up user registration allows your potential users can create accounts and store personal info on your web app. Currently, Django offers a number of different ways to set this up. One tried and tested method is the Django built-in authenticatio...Discussdjango forms
shamnad sheriefforshamnadsherief.hashnode.net·Feb 1, 2023Getting user input from an HTML form in DjangoDjango is a high-level Python web framework that enables the rapid development of secure and scalable web applications. One of the most common tasks in web development is collecting user input through forms. In this blog, we will go through the proce...Discuss·59 readsDjango
Favour OlumeseforThe Coding Processthecodingprocess.hashnode.net·Feb 1, 2023Creating a Registration Form with Email Verification in DjangoCreating a Superuser After creating our Django project and an application, we could implement a form for creating users from our browser. First, we would have to create a superuser (that is, a user with admin status) on our terminal to monitor the pr...Discuss·133 reads2Articles1Week
Ademola ThompsonforDeveloper Handbooksuperhero.hashnode.net·Jan 24, 2023Create A Django Form With Django Crispy Forms And HTMX.A form is an essential part of most web applications, as it is used to collect input from users. Django is a Python web framework that provides a way to create forms without having to write HTML code. But creating forms the traditional way in Django ...Discuss·1 like·125 readsDjango Forms: A Beginner’s Guide To Collecting User Input.Django
Saurav SharmaforPython Django Blogselftaughtdev.hashnode.net·Dec 17, 2022Boost your Django skills: Learn how to use super()The super() keyword is a useful tool in Django, a high-level Python web framework, for working with inheritance in classes. It allows a subclass to refer to its parent class, allowing the subclass to inherit attributes and methods from the parent cla...Discuss·20 likes·675 readsDjango
Saurav SharmaforPython Django Blogselftaughtdev.hashnode.net·Dec 14, 2022Deploy Django App over Ubuntu VPS with Gunicorn + Nginix + PostgreSQLIn this tutorial, we will deploy a Django app over Ubuntu VPS with Gunicorn + Nginix. We are going to use Vultr VPS for this tutorial. You can use any other VPS provider as well. 1. Create a new user adduser yourusername usermod -aG sudo youruserna...Discuss·20 likes·961 readsdeployment
Lawal Afeezforafeez1131.hashnode.net·Nov 13, 2022Introduction to Django Forms.Overview An HTML Form is a group of one or more fields/widgets on a web page, which can be used to collect information from users for submission to a server. Forms are a flexible mechanism for collecting user input because there are suitable widgets ...Discuss·110 readsDjango
Saurav SharmaforPython Django Blogselftaughtdev.hashnode.net·Oct 15, 2022Make your API to return only Required FieldsHey Folks, In this Blog, I am going to show you how can return only those fields from the API which user have requested by passing them in URL as parameters. this way your API users can only request those fields which they need & this will remove som...Discuss·10 likes·310 readsREST API
Antoine Mazéforantoinemaze.hashnode.net·Oct 5, 2022Input and Form validation using HTML5#draft version 1.3 Here my first (beta) post as I am working on a HTML form for a side project. Please be indulgent and feel free to leave a comment helping me improving my English writing ! I would appreciate any feedback. So let's start ! The Desi...Discuss·1 like·85 readsHTML5
Joshua OgbonnaforDev Journeydevjourney.hashnode.net·Oct 5, 2022How To Handle Forms Without Writing Backend CodeA couple of months ago, I was working on a project that needed to be launched as soon as possible and we needed to collect form data from thousands of our onboarded users. The time we had was very short to start writing some server-side code to colle...Discussjavascript forms