diff --git a/symposion/templates/about/what_next.html b/symposion/templates/about/what_next.html new file mode 100644 index 0000000000000000000000000000000000000000..6ac3b548f1000a5a5e9b491ae9899065a22337c7 --- /dev/null +++ b/symposion/templates/about/what_next.html @@ -0,0 +1,38 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load ifsetting_tag %} + +{% block head_title %}{% trans "What Next?" %}{% endblock %} + +{% block body %} +

{% trans "What Next?" %}

+ + {% if user.is_authenticated %} +

Here are some things to do to get started with this site:

+ +
+
verify an email address
+
so you can receive notifications, reset your password and so people can find you more easily.
+ + {% ifsetting ACCOUNT_OPEN_SIGNUP %} + {% else %} + {% if user.is_staff %} +
invite more people to the site [admin only]
+
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 %}