aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/wiki/root_missing.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-11 19:32:21 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-11 19:32:21 +0100
commitd44d5fcb91acbdb8e1d0684f223c9d6324a0c944 (patch)
tree77ca0896c72f4661516ca64170e0e89faa9a56ea /pydis_site/templates/wiki/root_missing.html
parentSome initial work on updating the wiki templates for Bulma (diff)
Some work towards initial pages and forms
There's tons more to do here, ultimately
Diffstat (limited to 'pydis_site/templates/wiki/root_missing.html')
-rw-r--r--pydis_site/templates/wiki/root_missing.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/pydis_site/templates/wiki/root_missing.html b/pydis_site/templates/wiki/root_missing.html
index 01efa4cb..c3b89c45 100644
--- a/pydis_site/templates/wiki/root_missing.html
+++ b/pydis_site/templates/wiki/root_missing.html
@@ -6,28 +6,29 @@
<div class="column is-two-thirds is-offset-2">
<article class="message is-primary">
<div class="message-header">
- <p>Congratulations!</p>
+ <p>No articles found</p>
</div>
<div class="message-body">
<p>
- {% trans "You have django-wiki installed and it seems to be working. But there are no articles yet." %}
+ It appears that there are no articles available on this wiki.
</p>
{% if not user.is_superuser %}
<p>
- {% trans "Not to worry! You simply have to login with a superuser account and create the first article in the root of the URL hierarchy." %}
+ To get started, please login with a superuser account.
</p>
{% login_url as wiki_login_url %}
{% if wiki_login_url %}
<div class="has-text-centered">
- <a href="{{ wiki_login_url }}" class="button is-primary">{% trans "Click here to login" %}</a>
+ <a href="{{ wiki_login_url }}" class="button is-primary">Login</a>
</div>
{% endif %}
{% else %}
<p>
- {% trans "But since you're logged in as a superuser, we should really get started..." %}
+ Let's get started - click below to create the first article, or to read up on the
+ <code>django-wiki</code> documentation.
</p>
<a class="button is-primary" href="{% url 'wiki:root_create' %}">Create Article</a>