Assignment 5: Using Data Models in a Web Application
due by 9:00 p.m. EDT on Friday, February 21, 2025
Learning Objectives
After completing this assignment, students will be able to:
-
Create a Django web application, with multiple URL patterns, views, and HTML templates.
-
Define Django models to represent persistent data objects within an application.
-
Use the Django admin tool to create/update sample records.
-
Create appropriate URLs to view model data in a web application, and use these URLs to navigate between list and detail views of records.
-
Use generic
ListView
to display a list of records from the database.
Pre-requisites: Assignments 3 and 4
Assignment 5 builds upon all of the basic Django concepts from Assignments 3 and 4
(URLs, views, templates), as well as use of git
for deployment.
You must have completed Assignment 4 before you attempt Assignment 5.
Case Study: Mini Facebook
This assignment is part of an in-depth case study to develop a data-enabled web application. In the entire case-study, you will simulate the core features of the Facebook social networking application:
- Viewing, creating, and updating user profiles
- Viewing and creating status messages
- Uploading images
- Viewing and adding friends
- Developing a news feed to show status messages from multiple friends
- Incorporating user accounts, authentication, and registration
This assignment is the fifth part of the case study, and you will continue the work from the previous assignment to build a database-enabled web application.
Here is a sample implementation: MiniFacebook Application.
You do not need to match the data of this example, or even the way it is formatted. The look and feel of the application, as well as the data you dispaly, is entirely up to you.
Preliminaries
In your work on this assignment, make sure to abide by the collaboration policies of the course.
If you have questions while working on this assignment, please post them on Piazza! This is the best way to get a quick response from your classmates and the course staff.
For each problem in this problem set, we will be writing or evaluating some Python code. You are encouraged to use the VS Code IDE which will be discuss/presented in class, but you are welcome to use another IDE if you choose.
Important Guidelines: Comments and Docstrings
-
Refer to the class Coding Standards for important style guidelines. The grader will be awarding/deducting points for writing code that comforms to these standards.
-
Every program file must begin with a descriptive header comment that includes your name, username/BU email, and a brief description of the work contained in the file.
-
Every function must include a descriptive docstring that explains what the function does and identifies/defines each of the parameters to the function.
Create the mini_fb
Application
Within your existing cs412
Django project, create a new application called mini_fb
.
All other tasks are to be done within the mini_fb
project, unless otherwise
indicated.
Task 1: Modeling and Displaying Profiles
In the first part of our case study you will begin to develop a simple implementation of the Facebook social media web application. In this part, you will create a simple data model, create some records using the Django admin application, and create the URL patterns, views, and templates required to display the data on the web.
-
In the
models.py
file, create a model calledProfile
, which will model the data attributes of individual Facebook users.This
Profile
model will need to include the following data attributes:first name
,last name
,city
,email address
, and aprofile image url
. -
Use the Django admin to create 5 sample profiles, with names/data of your choosing. You do NOT need to reproduce the exact data from the example above.
Important: Add files to git!
-
You’ve just modified your database structure, and added some data records.
-
This is an excellent time to add your files to git, commit your changes, and push your changes to GitHub before anything gets F@&#ed up.
-
Add all files to your git repository using the command:
git add -a
-
Commit changes to your git repository, using the command:
git commit -m "Created Profile model for mini_fb"
-
Push changes to your GitHub repository, using the command:
git push origin master
-
-
In the
views.py
file, create a class-based view calledShowAllProfilesView
, which inherits from the genericListView
.Use this view to obtain data for all
Profile
records, and to deleguate work to a template calledshow_all_profiles.html
to display allProfile
s. -
Create a
templates
directory, and create a template file calledbase.html
. Use this file to:- create all of the standard HTML tags (
<head>, <body>
, etc.) - link in CSS file(s)
- create a standard header/footer to display on all pages
- provide navigation links for your application (not needed in this assignment, but for future parts)
Create a
content block
(using scriptlet tag) to be filled in by the pages that inherit frombase.html
.Create the template file
show_all_profiles.html
, which extends thebase.html
template and implements thecontent
block. Use this page to display a table with allProfile
records, one per line. Include the first name, last name, city, and a profile image, using the data attributes stored in theProfile
model. - create all of the standard HTML tags (
-
Edit your main project’s
urls.py
, to create a link on the URL pattern'/mini_fb/
to route requests to themini_fb
project’surls.py
file. Create theurls.py
file inside themini_fb
project, which will create a URL mapping from the default URL (''
) to theShowAllProfilesView
. Name this URLshow_all_profiles
.
Test your application! Try this URL pattern: 'http://127.0.0.1:8000/mini_fb/
.
You should be able to see a page with all profiles, displaying in a
table. Resolve all errors before continuing to the next part.
Important: Add files to git!
-
You’ve just reached a good stopping point.
-
This is an excellent time to add your files to git, commit your changes, and push your changes to GitHub before anything gets F@&#ed up.
Task 2: Creating and showing a Profile page
In this part, you will create a profile page for a single user, and link to that page
from the show_all_profiles.html
page that you developed in your previous iteration of mini_fb
.
-
Edit the
views.py
file. Create a class-based view calledShowProfilePageView
, which inherits from the genericDetailView
class.Use this view to obtain data for one
Profile
record, and to deleguate work to a template calledshow_profile.html
to display thatProfile
. -
Create the template file
show_profile.html
, which inherits frombase.html
. This template will render a profile page for one user (i.e., a singleProfile
record).Display a larger-format image, and display all the data attributes stored in the
Profile
record. Choose formatting that you find aesthetically pleasing. -
Edit the
mini_fb
project’surls.py
file. Create a URL mapping to route requests from the URL pattern'profile/<int:pk>'
to theShowProfilePageView
. Name this URLshow_profile
.Test your page! Try this URL pattern:
'http://127.0.0.1:8000/mini_fb/profile/1
.(If you don’t have a
Profile
withpk
of 1, try 2 or 3... Deletedpk
s are NOT re-used; rather, the counter just keeps incrementing when new objects are created).You should be able to see a profile page with one profile, displaying in a table. If you have errors, resolve them now before continuing on to the next part.
-
Edit your
show_all_profiles.html
file to create links from each user’s name and image to the profile page for that user. Use the data attributes of the model to create a URL pattern similar to'http://127.0.0.1:8000/mini_fb/profile/1
, but substituting in the primary key for each profile, i,e., the attributeprofile.pk
.Hint: use the syntax for a named URL:
"{% url 'name' profile.pk %}"
, wherename
is the name you gave for this URL in theurls.py
file. We will discuss URLs in class.
Test everything! Start at this URL pattern: 'http://127.0.0.1:8000/mini_fb/
.
Test that you can click through to a profile page for any profile, and then use the
link at the top of the page to return to viewing all profiles.
If you have errors, resolve them now before continuing on to the next part.
Important: Add files to git!
-
You’ve just reached a good stopping point.
-
This is an excellent time to add your files to git, commit your changes, and push your changes to GitHub before anything gets F@&#ed up.
Deployment to cs-webapps
- Deploy your web application to the
cs-webapps.bu.edu
.
Follow the [deployment instructions here][deployment].
-
Test your web application on
cs-webapps.bu.edu
to ensure that everything works correctly. -
Resolve any deployment issues.
Submitting Your Work
10 points; will be assigned by the autograder, verifying that you have submitted the correct files/URL, and testing that you website exists at the specified URL. 90 points; will be testing your application and code review
Log in to GradeScope to submit your work.
Be sure to name your files correctly!
-
Create a text file within your main django directory called
a5_url.txt
, containing the URL to your web page, and nothing else.For example:
https://cs-webapps.bu.edu/azs/cs412/mini_fb/
.This file will be used by the autograder to locate your web page, so you must get the URL exactly correct, and you must not include any other text or code in the file.
-
Add teaching staff as collaborators to your GitHub repository (
wderocco8
,Aanuszkiewicz
, andazs-bu
). Read-only access is fine.Create a text file called
github_url.txt
in the root of your project (e.g.,django
directory). Paste your GitHub URL in the file.Add these files to your git repository using
`git add -A`.
Commit this to your git repository, using
`git commit -m "Added a5_url.txt"`
Push it to GitHub, using
`git push origin main`
-
Log in to GradeScope to submit your work.
In the Gradescope upload page, upload these two files:
-
a5_url.txt
-
github_url.txt
-
Notes:
-
Upload these files to Gradescope before the deadline.
-
When you upload, the autograder script will process your file(s).
-
You may resubmit as many times as you like before the deadline, and only the grade from the last submission will be counted.