Hi everyone!<div><br></div><div>I want to add a panel to settings dashboard. This panel is named 'Password' and here the users will be able to modify your password (This will be programmed).</div><div>My problem is that I can not add another panel (I dont see the option Password in the Settings dashboard). I did the following:</div>
<div><br></div><div>1.- Added a folder named password in  /horizon/dashboards/settings </div><div>2.- A added the __init__.py file into password folder</div><div>3.- Added the views.py file into password folder with this content:</div>
<div><br></div><div>    from django import shortcuts</div><div><br></div><div>    def index(request):</div><div>        return shortcuts.render(request, 'settings/password/password.html', {})</div><div><br></div><div>
4.- Added urls.py file into password folder with this content:</div><div><br></div><div><div>    from django.conf.urls.defaults import patterns, url</div><div>    from .views import IndexView</div><div><br></div><div>    urlpatterns = patterns('horizon.dashboards.settings.password.views',</div>
<div>        url(r'^$', IndexView.as_view(), name='index'),</div><div>    )</div></div><div><br></div><div>5.-Added panel.py file into password folder with this content:</div><div><div><br></div><div>    from django.utils.translation import ugettext_lazy as _</div>
<div>    import horizon</div><div>    from horizon.dashboards.settings import dashboard</div><div><br></div><div>    class Password(horizon.Panel):</div><div>        name = _("Password")</div><div>        slug = 'password'</div>
<div>    </div><div>    dashboard.Settings.register(Password)</div></div><div><br></div><div>6.- In dashboard.py file located in /horizon/dashboard/settings added password to panels:</div><div>    panels = ('user', 'project', 'ec2', 'password')</div>
<div><br></div><div><br></div><div>But I not see the password panel. What is the problem?</div><div><br></div><div><b>Any answer will be apreciated, thanks in advance!</b></div><div><b><br></b></div><div>Best Regards,</div>
<div>Guillermo Alvarado</div><div><br></div>