Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
fixed /partners redirect; (bug 805122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jen Fong-Adwent committed Oct 24, 2012
1 parent 6d897b9 commit ef258b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mkt/ecosystem/templates/ecosystem/landing.html
Expand Up @@ -155,7 +155,7 @@ <h2>{{ _('Firefox Marketplace') }}</h2>
alt="{{ _('Mozilla') }}">
<h3>{{ _('Partnerships') }}</h3>
</div>
<div class="contact-info">
<div class="contact-info" id="partners">
<h3>
{% trans %}
Are you a Web Company, Third-Party Service, or OEM looking to
Expand Down
2 changes: 2 additions & 0 deletions mkt/ecosystem/urls.py
@@ -1,9 +1,11 @@
from django.conf.urls import patterns, url
from django.views.generic import RedirectView

from . import views

urlpatterns = patterns('',
url('^$', views.landing, name='ecosystem.landing'),
url('^partners$', RedirectView.as_view(url='/developers/#partners')),
url('^installation$', views.installation, name='ecosystem.installation'),
url('^support$', views.support, name='ecosystem.support'),
url('^docs/(?P<page>\w+)?$', views.documentation,
Expand Down

0 comments on commit ef258b5

Please sign in to comment.