Hi,
I am new to sphinx and am using it to document one of my python projects. I am using autodoc option to generate documentation for my project. I have a pretty long hierarchy for my modules. Something like this : 
source.abc.xyz.cde.xxx.yyy.config.group.resource
Because of this my sidebar links are too long and look very bad. I have used a sticky sidebar option but I still not satisfied.
Is there some option (for confy.py or other) to generate rst files where only module names are section headers and not the entire path :
For Ex : 
       my source.abc.xyz.cde.xxx.yyy.config.group.rst file should have 
       resource
       =======
            .. automodule:: source.abc.xyz.cde.xxx.yyy.config.group.resource
              :members:
              :undoc-members:
              :show-inheritance:
       instead of 
       source.abc.xyz.cde.xxx.yyy.config.group.resource
       ========================================
            .. automodule:: source.abc.xyz.cde.xxx.yyy.config.group.resource
              :members:
              :undoc-members:
              :show-inheritance:
Any help is appreciated. Thanks in advance.
-Maddy