When particularly extend template and when to use include ? Is include of any use with content like user profile section (like about me in the corner of our site) ?
See about django template inheretance.
Extends sort of 'includes' the parent template and then can overwrite parts of it for different functionality.
Include does a simple include rendering a template in a current context.