Hello everyone,
My question is in regards to my current installation of Drupal 4.7.4, views.module, cck package (specifically the node reference module) and the viewfield.module
My objective is to create a small movie database that lists movies and crew as separate node types and to have each type be referenced within each other. For example, A 'movie' will list the crew when viewing a movie node. You can click on any of the crew and you will be directed to a 'crew' node type where all of the movies this person has been a part of will be displayed and referenced.
I'd like to do this with CCK and views as they can be customised to exactly what I require. I did stumble upon the 'Movie Database' module however, it did not suit my needs.
I currently have two cck node types (for simplicity of describing the issue, I have used the names):
1. 'movie'
2. 'crew'
The fields in 'crew' are:
'name' (textfield)
'bio' (textfield)
'credits' (viewfield)
The fileds in 'movie' are:
'title' (textfield)
'year' (textfield)
'director' (nodereference > crew)
'producer' (nodereference > crew)
'editor' (nodereference > crew)
etc...