1 {% extends "osqaadmin/base.html" %}
7 {% trans "Dashboard" %}
9 {% block description %}
10 {% trans "Welcome to the OSQA administration area." %}
13 {% block admincontent %}
16 <td width="50%" valign="top">
17 <h3>{%trans "Site statistics" %}</h3>
21 {{ statistics.total_questions }} {% trans "question" %}{{ statistics.total_questions|pluralize }} ({{ statistics.questions_last_24 }} {% trans "in the last 24 hours" %})
26 {{ statistics.total_answers }} {% trans "answer" %}{{ statistics.total_answers|pluralize }} ({{ statistics.answers_last_24 }} {% trans "in the last 24 hours" %})
31 {{ statistics.total_users }} {% trans "user" %}{{ statistics.total_users|pluralize }} ({{ statistics.users_last_24 }} {% trans "joined in the last 24 hours" %})
37 <h3>{%trans "Site status" %}</h3>
41 {% ifequal settings_pack "bootstrap" %}
42 {% trans "Your site is running in bootstrap mode, click the button below to revert to defaults." %}<br />
44 {% ifequal settings_pack "default" %}
45 {% trans "Your site is running in standard mode, click the button below to run in bootstrap mode." %}<br />
47 {% trans "Your site is running with some customized settings, click the buttons below to run with defaults or in bootstrap mode" %}
50 {% ifnotequal settings_pack "default" %}
51 <button onclick="if (window.confirm('{% trans "Are you sure you want to revert to the defaults?" %}')) window.location='{% url "admin_go_defaults" %}';">{% trans "revert to defaults" %}</button>
53 {% ifnotequal settings_pack "bootstrap" %}
54 <button onclick="if (window.confirm('{% trans "Are you sure you want to run bootstrap mode?" %}')) window.location='{% url "admin_go_bootstrap" %}';">{% trans "go bootstrap" %}</button>
60 <em>"Bootstrap mode" relaxes the minimum required reputation to perform actions like voting and commenting.
61 This is useful to help new communities get started.</em>
65 <h3>{%trans "Recalculate scores and reputation" %}</h3>
66 <button onclick="if (window.confirm('{% trans "This is a heavy operation, are you sure?" %}')) window.location='{% url "admin_denormalize" %}';">{% trans "Recalculate" %}</button>
71 <h3>{% trans "Recent activity" %}</h3>
73 {% for activity in recent_activity %}
74 {% activity_item activity request.user %}