patricheck: You could add another JOIN using a "derived" table, but since you're new to this, it's easier to change your WHERE and use a subquery. It's easier to see what's happening.
ALTER PROCEDURE dbo.FilmStatusQuery
AS SELECT t.Date, t.Type, t.Status, t.Notes, c.FirstName, c.LastName...