Assignment ­ web development with flask

Assignment Help Marketing Research
Reference no: EM132196660

Assignment ­ Web Development with Flask

Overview

This week, which is our last week for web development, we reviewed how we can extend our Flask applications to use a relational database (SQLite). In this vein, you will develop a small application in Flask. The purpose of this application is to keep track of students that are enrolled in a class, and the score they have received on quizzes in the class. You will have to import a database model in a SQLite database, and use this database to allow a teacher to:

1. Add students, add quizzes and to add quiz results to the database
2. View the current list of students, quizzes and the student's quiz results

Part I ­ Database Setup and Initialization

Given the description above, we know there are three entities in the problem:

1. Students
2. Quizzes
3. Student's Results on Quizzes Lets describe each one:
1. Students represent students taking a class. Students have a first name, a last name, and a unique integer ID.
2. Quizzes are the quizzes that have been given in the class. A quiz has a unique ID, a subject (i.e. "Python Basics"), a certain number of questions, and a date representing the day the quiz was given.
3. Student's Results can be modeled as linking one student to one quiz, with an integer representing their score (from 0 ­ 100).

Given this, you should design a schema for this problem. and save this schema to a file named ‘schema.sql' in your repo. After you create the schema, please create a SQLite database file called ‘hw13.db'. To help with debugging the next sections of code, load some data into the database that represents:

• a student named "John Smith"

• one quiz with a subject of "Python Basics", that has 5 questions and was given on "February, 5th, 2015"
• and that "John Smith" received a 85 on the quiz

Part II ­ Teacher Login

The ‘/login' route of this application should render a simple login form, which asks for a username and password. The form on this page should submit to the ‘/login' route, and upon submission:

• should redirect to ‘/dashboard' route, which we will develop later, if the username and password credentials are correct
• should redirect back to the ‘/login' route, with an error message, when the credentials are incorrect

For the application, the username should be ‘admin', and the password ‘password' (this is obviously not secure!). This is similar to the Flaskr application from the reading. All subsequent controllers should check if the request is being made by a logged in user. If not, the controller should redirect back to the login page.

Part III ­ Dashboard: View students and quizzes in the class

The next step is to design a ‘dashboard' page (located at ‘/dashboard'), which shows a listing of students in the class and a listing of quizzes in the class, in two separate tables. Each row of the student table should list the ID, first and last name of all student enrolled in this class. Each row of the quiz table should list the ID, subject, number of questions and the quiz date.

Part IV ­ Add students to the class

We need to be able to add students. Update the dashboard page to include a link to the "Add Student Page", which will be located at ‘/student/add'. Create a controller at this route that should:

• Display an HTML form capable of adding a new student (HINT: there should be no reason to have an ID field in this form, as that should be taken care of by the database)
• Accepts the HTML form and attempts to add a new student to the database with the given form information. Upon success, redirect back to the ‘/dashboard' route. If there is a failure, return the same HTML form with an error message.

Part V ­ Add Quizzes to the Class

We also need to be able to add quizzes. Repeat the prior step, but for a quiz instead of a student. This route should be located at ‘/quiz/add'. Think about how best to represent a date using HTML forms, as you have a few options.

Part VI ­ View Quiz Results

Now that we have a way of listing and adding both students and quizzes, we need to see student's results on their quizzes. We'll accomplish this by updating the Student listing in the dashboard output to include a link. This link should point to route that has a format of ‘/student/<id>', where id is the ID of the student. This route should display all quiz results for the student with the given ID. If there are no results, you should output "No Results' to the page; otherwise, an HTML table should be displayed showing the Quiz ID and the Score on the quiz.

Part VII ­ Add a Student's Quiz Result

We're almost done, but we now need to handle recording a student's grade for a quiz. Update the dashboard to include a link called "Add Quiz Result" that links to the ‘/results/add' route. This route should display an HTML form capable of adding a quiz result. Since a result links a student and a quiz together, we need to be able to select a student and to select a quiz. Implement both of these as a dropdown menu, which lists the possible students and quizzes to choose from. Don't forget to add an input field for the grade as well. If successful, this should redirect to the dashboard; if there is a failure, show the HTML form again with an error message.

Optional Part: Expand the Results Output

Using a JOIN SQL statement, expand the output to show not only the Quiz ID, but also the date the quiz was given and the subject of the quiz.

Optional Part: Deletions

Allow the application to delete quizzes, students and their results.

Optional Part: Anonymous View of Quiz Results

Allow non­logged in users to see an anonymous view of the quiz results. Given a quiz ID, the route ‘/quiz/<id>/results/' should display all the student's results but only display the student's ID (so this non­logged in user, like a student, can see the class results but cannot see the name associated with the grades). You can further expand this to allow the admin user to see the student's name associated with the result.

Functional Requirements

The web application must:

1. Allow a teacher to login via a username and password
2. Allow this teacher to view and add students to the roster
3. Allow this teacher to view and add quizzes in the class
4. Allow this teacher to view and add student's quiz results The web application can assume:
1. There is only one class to worry about The web application can optionally:
1. Display extended information for quix results
2. Allow this teacher to delete students, quizzes or results

3. Allow a non­logged in user to see quiz results but only in a anonymized way (i.e. show a student ID instead of the user name)

Verified Expert

The assignment was to develop a web application using the Flask Web Development Framework in Python for maintaining the results of quizzes for class of students.There were primarily 7 objectives and 3 optional objectives.All the 10 objectives including the optional ones were implemented. READ, CREATE and DELETE operations were used on SQLite Database.Bootstrap library was for designing.

Reference no: EM132196660

Questions Cloud

Sustainable polices may contribute to competitive advantage : In this module we examined how ethics, social responsibility, and environmentally sustainable polices may contribute to competitive advantage.
How would you estimate the equation : Suppose that annual earnings and alcohol consumption are determined by the SEM. Where price is a local price index for alcohol, which includes g and local taxes
The market potential of diana design to dine caterers : To determine the market potential of Diana’s Design to Dine Caterers, Diana first had to _______.
Analyze the reasons for the variation of growth rates : Critically analyze the reasons for the variation of growth rates in that time period about 1200 words. What are the major challenges it faces in enhancing.
Assignment ­ web development with flask : You will have to import a database model in a SQLite database, and use this database - how we can extend our Flask applications to use a relational database
Why governments may engage in policy intervention : Identify, from Australian industry, examples of monopoly and monopolistic competition and explain how and why governments may engage in policy intervention.
Identify the component of total rewards compensation : Identify the component of Total Rewards compensation which has the capability to BEST create a high performing company.
Test bench to perform row reduction on a matrix : Write a c program and test bench to perform row reduction on a 3 by 3 matrix and optimize to perform efficiently on the Zybo.
How do these assumptions influence the implications : How do these assumptions influence the implications and inferences you use in argument?

Reviews

len2196660

12/17/2018 11:42:02 PM

Useful Reminders 1. Read the assignment over a few times. At least twice. It always helps to have a clear picture of the overall assignment when understanding how to build a solution. 2. Think about the problem for a while, and even try writing or drawing a solution using pencil and paper or a whiteboard. 3. Before submitting the assignment, review the “Functional Requirements” section and make sure you hit all the points. This will not guarantee a perfect score, however.

Write a Review

Marketing Research Questions & Answers

  Describe the four strategies that firms have available

Describe the four strategies that firms have available when they enter international markets. Discuss the two opposing forces .

  Prepare a paper detailing the findings of your discussion

Discuss the work you completed for your client this week.Your discussion should include the principles and strategies.

  Describe how you would segment the wine market in the usa

Describe how you would segment the wine market in the USA? Show how the market can be described and what dimensions you would use for segmentation.

  How will human resources be marshalled

What are your objectives with the penetration of the market and what strategies are going to be adopted - create a sense of vision for your project by briefly considering the next steps once your product(iPhone 4) has been launched into the country..

  Why is the design of products and services important

Why is the design of products and services important to global supply chain management and what are the main design alternatives that are available?

  Draw up a research proposal for the city council

Draw up a research proposal for the city council that will specifically address the question of identifying the quality of the communication processes with employees.

  What threats does pinterest face in the future

Analyze the forces in the marketing environment thathave contributed to Pinterest's explosion in popularity.What threats does Pinterest face in the future?

  Analyze what is an exceptional customer experience

Analyze What is an exceptional customer experience? How you as an Emerging Leader will you define exceptional customer experience for organizational customers.

  The concept of privacy encompasses

Which of the following is a ubiquitous application, meaning it is able to function without a user's knowledge or control?

  Explain how organizations use social media to communicate

The task as Marketing Manager to scan social media web sites and try to mitigate the negative consumer postings from a recent crisis.

  Distribution strategies for online versus brick

Compare and contrast similarities and differences in distribution strategies for online versus brick and mortar businesses.

  Negotiating a labor agreement

What issues do you see as most important in negotiating a labor agreement?

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd