I can get the username by doing this:
public function indexAction()
{
$this->view->username = Zend_Auth::getInstance()->getIdentity();
}
"username" is the column in the table that validates the identity. "firstname" is also a column in that table. Does Zend_Auth only store the username? Or is there a way to access other columns from the user's row in the table?