{% extends "site_base.html" %} {% load i18n %} {% block head_title %}{% trans "Welcome" %}{% endblock %} {% block tab_id %}id="home_tab"{% endblock %} {% block body %} {% blocktrans %}

Pinax is a Django project intended to provide a starting point for websites. By integrating numerous reusable Django apps to take care of the things that many sites have in common, it lets you focus on what makes your site different.

This site is just a running example of Pinax. The source code is available as part of the Hot Club of France project.

If you have any questions about this site or the Pinax project, please contact James Tauber.

{% endblocktrans %} {% if user.is_authenticated %} {% url what_next as what_next_url %}

{% blocktrans %}Wondering What Next?{% endblocktrans %}

{% else %} {% url acct_signup as signup_url %} {% url acct_login as login_url %}

{% blocktrans %}You can Sign up and Log in to try out the site.{% endblocktrans %}

{% blocktrans %}At this stage, there is openid support, email verification, password management, site announcements, user-to-user messaging, friend invitation (both internal and external to the site), a basic twitter clone, interest groups (called tribes), projects with basic task and issue management, threaded discussions, wikis, blogging, bookmarks, contact import (from vCard, Google or Yahoo), photo management and a notification framework.{% endblocktrans %}

{% endif %} {% endblock %}