I think it might be because
url(r'^browse/$', 'browse', name='projects-browse-main'),
url(r'^browse/(\d+)/$', 'browse', name='projects-browse'),
both refer to the same function 'browse' in 'bizteen.projects.views' but one of them takes an argument (\d+) and the other one doesn't. Have you specified a default parameter for the function? Like so
def browse(request, project="1"):
If not that, there might be a problem in your project-wide urls.py (your example looks like an excerpt from an application urls.py). Do you have something like this in your project-wide urls.py?
urlpatterns = patterns('',
(r'^project/', include('bizteen.project.urls))
)
