To create a web page to calculate total bill amount with GST from price and GST percentage using server-side scripts.
Bill = P + (P * GST / 100)
P --> Price (in Rupees)
GST --> GST (in Percentage)
Bill --> Total Bill Amount (in Rupees)
Clone the repository from GitHub.
Create Django Admin project.
Create a New App under the Django Admin project.
Create a HTML file to implement form based input and output.
Create python programs for views and urls to perform server side processing.
Receive input values from the form using request.POST.get().
Calculate the total bill amount (including GST).
Display the calculated result in the server console.
Render the result to the HTML template.
Publish the website in Localhost.
The a web page to calculate total bill amount with GST from price and GST percentage using server-side scripts is created successfully.