Greetings.
While setting up our website, I've come across a dilemma I can't solve, and after giving it some thought I've decided to post it here in case some of you could help me.
One of the links in my Primary Menu is named "Members". Here lies the problem; the idea behind such link is that, once you click on it, you are supposed to get a list of all the registered Drupal users. When you click on one of the users, you will get the user's curriculum vitae, which was previously written by the user using a content type called "curriculum", which has yet to be implemented.
I don't see this as impossible in Drupal at all, but it's a hard task for someone like me, who isn't much experienced in Drupal yet.
The biggest problems I'm facing in order to do this are:
1. How would I get the list of all members? The approach I've thought of involves querying the "users" table at the database... but how could I get the real name of the user? When the user registers, he never supplies his real name, and I would need it in order to carry on this task. Is there any users module that could help me with this?
2. How can I make the user's real name point to the curriculum he introduced? The content will have a node number. My idea is to hardcode the href attribute and make it point to the node number of the user's curriculum. Is there a way to check what nodes the user has created?