mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
quassel: Minor styling and UI message chanages
- Add information about Quassel clients and usage. - Expand introduction. - Update titles for consistency. - Minor styling
This commit is contained in:
parent
644ab8db9f
commit
3c895f58f5
@ -1,5 +1,4 @@
|
||||
#!/usr/bin/python3
|
||||
# -*- mode: python -*-
|
||||
#
|
||||
# This file is part of Plinth.
|
||||
#
|
||||
@ -18,7 +17,7 @@
|
||||
#
|
||||
|
||||
"""
|
||||
Configuration helper for Quassel core
|
||||
Configuration helper for Quassel core.
|
||||
"""
|
||||
|
||||
import argparse
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
"""
|
||||
Forms for quassel module.
|
||||
Forms for Quassel module.
|
||||
"""
|
||||
|
||||
from django import forms
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h2>{% trans "Quassel IRC" %}</h2>
|
||||
<h2>{% trans "IRC Client (Quassel)" %}</h2>
|
||||
|
||||
<p>
|
||||
{% blocktrans trimmed with box_name=cfg.box_name %}
|
||||
@ -31,7 +31,19 @@
|
||||
"core" and a "client". This allows the core to remain connected
|
||||
to IRC servers, and to continue receiving messages, even when
|
||||
the client is disconnected. {{ box_name }} can run the Quassel
|
||||
core service.
|
||||
core service keeping you always online and one or more Quassel
|
||||
clients from a desktop or a mobile can be used to connect and
|
||||
disconnect from it.
|
||||
{% endblocktrans %}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{% blocktrans trimmed %}
|
||||
You can connect to your Quassel core on the default Quassel port
|
||||
4242. Clients to connect to Quassel from your
|
||||
<a href="http://quassel-irc.org/downloads">desktop</a> and
|
||||
<a href="http://quasseldroid.iskrembilen.com/">mobile</a> devices
|
||||
are available.
|
||||
{% endblocktrans %}
|
||||
</p>
|
||||
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
"""
|
||||
Views for quassel module.
|
||||
Views for Quassel module.
|
||||
"""
|
||||
|
||||
from django.contrib import messages
|
||||
@ -51,7 +51,7 @@ def index(request):
|
||||
form = QuasselForm(initial=status, prefix='quassel')
|
||||
|
||||
return TemplateResponse(request, 'quassel.html',
|
||||
{'title': _('Quassel IRC'),
|
||||
{'title': _('IRC Client (Quassel)'),
|
||||
'status': status,
|
||||
'form': form})
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user