<span style>Hi everyone!</span><div style><br></div><div style>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 style>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 style><br></div><div style>1.- Added a folder named password in  /horizon/dashboards/settings </div>
<div style>2.- A added the __init__.py file into password folder</div><div style>3.- Added the views.py file into password folder with this content:</div><div style><br></div><div style>    from django import shortcuts</div>
<div style><br></div><div style>    def index(request):</div><div style>        return shortcuts.render(request, 'settings/password/password.html', {})</div><div style><br></div><div style>4.- Added urls.py file into password folder with this content:</div>
<div style><br></div><div style><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 style><br></div><div style>5.-Added panel.py file into password folder with this content:</div><div style><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 style><br></div><div style>6.- In dashboard.py file located in /horizon/dashboard/settings added password to panels:</div>
<div style>    panels = ('user', 'project', 'ec2', 'password')</div><div style><br></div><div style><br></div><div style>But I not see the password panel. What is the problem?</div><div style>
<br></div><div style><b>Any answer will be apreciated, thanks in advance!</b></div><div style><b><br></b></div><div style>Best Regards,</div><div style>Guillermo Alvarado</div>