{% extends "base.html" %} {% load ifsetting_tag %} {% block title %}{% trans "What Next?" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "What Next?" %}

{% if user.is_authenticated %}

{% trans "Here are some things to do to get started with this site:" %}

{% trans "verify an email address" %}
{% trans "so you can receive notifications, reset your password and so people can find you more easily." %}
{% trans "fill out your profile" %}
{% trans "to tell the world a little about yourself." %}
{% ifsetting ACCOUNT_OPEN_SIGNUP %} {% else %} {% if user.is_staff %}
{% trans "invite more people to the site" %} ({% trans "admin only" %})
{% trans "so more people can share in the fun." %}
{% endif %} {% endifsetting %}
{% else %} {% url acct_login as login_url %}

{% ifsetting ACCOUNT_OPEN_SIGNUP %} {% url acct_signup as signup_url %} {% blocktrans %}Start by signing up and logging in.{% endblocktrans %} {% else %} {% blocktrans %}Start by logging in.{% endblocktrans %} {% endifsetting %}

{% endif %} {% endblock %}