pk stands the "primary key" in django which represents a models ID.
The ID attribute is generated for you automatically behind the scences
for each model and any newly created instances after that.
pk is short for primary key, which is a unique identifier for each
record in a database.