Develop a small application in flask

Assignment Help Marketing Research
Reference no: EM132196651

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)

Reference no: EM132196651

Questions Cloud

Simulate the operation of two of cpu scheduling methods : Write a C++ program to simulate the operation of two of CPU scheduling methods. Get the number of processes from the user.
Discusses any themes that relates to global business : Research and read objectively any academic article of your choice () that discusses any theme(s) that relate(s) to global business.
A program that runs on ocelot for a mini calculator : Write a C program that runs on ocelot for a mini calculator using only the command line options. You must use getopt to parse the command line.
Analysis divides on-hand inventory into three classes : The identification of parent items is called. ABC analysis divides on-hand inventory into three classes, generally based upon.
Develop a small application in flask : 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
Display the number of vowels in your name : Write a C program that stores your first name and your last name in separate arrays and counts and displays the number of vowels in your name.
Compare and contrast the two franchise agreements : Compare and contrast the two Franchise Agreements (Taste of Philly and Haagen Dazs) with respect to the contractual termination provisions.
Increasing uncertainty inherent in the business environment : How can data analytics help managers cope with the increasing uncertainty inherent in the business environment?
Write a function that removes any repeated letters : Write a main method that reads words (strings) from a file and writes the new strings (with no repeated letters, regardless of case,) to another file.

Reviews

len2196651

12/17/2018 11:37:22 PM

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)

len2196651

12/17/2018 11:37:04 PM

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

  What is your organizations value proposition

What is your organization's value proposition (How does it deliver value that satisfies the targets wants and needs?)?

  How do we best apply the knowledge from this article

Identify author's main lesson/argument - what is the author(s) teaching us.evaluate the lesson/argument - strengths/weaknesses -considering pointing to a frame of reference in your own life or your training in the subject.so what and now what? How ..

  Explain the importance of mis in relation to data driven

Explain how the techniques and tools can be utilized to present data to management and other organizational decision makers.

  How a firm can successfully conduct market research

How a firm can successfully conduct market research with a modest or nonexistent budget. DEVELOPING AND LEVERAGING COMPETITIVE ADVANTAGES.

  What type of layout does the store use

What type of layout does the store use? Is it appropriate for the type of store? Would another type of layout be better?

  Describe the website and state why you selected this

Create a matrix for this organization based on the information available and any other supporting documentation you can find on this organization.

  Define the key success factors in the chosen industry

Analyze your organization's internal strengths and weaknesses. Consider factors such as personnel, finances, manufacturing capabilities, corporate culture, product or service pricing, and current promotion.Analyze your organization's external oppo..

  What is the capital market line

What is the capital market line? Who uses it? Would you use it? Who discovered it? How does the capital market line relate to the security market line?

  Explain the reason for positioning and repositioning product

Choose a product with which you are familiar, preferably one in your industry, and explain how it might be repositioned.

  Conduct internet research on a company

Conduct Internet research on a company that has experienced a breach of security of its customers' information.

  How are you going to develop a budget with those funds

Describe what strategies you chose to market your product or service and why you chose them.Describe what tactics you chose to implement your strategy.How are you going to develop a budget with those funds?

  Compares the five different change management models

Discuss the role that leader vision and organizational climate plays in a change management strategy.

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