Omit ircnick from docs if empty

If a candidate doesn't have an IRC nic we currently display '(None)'
where other candidates get '(a_nic)'.  While I don't think that people
will genuinely confuse 'None' for an IRC nic lets just not include
anything in the output.

Change-Id: Ic41b89f11bf4473b226bc359529bf408c77ce998
This commit is contained in:
Tony Breeds 2018-07-27 14:58:15 +10:00
parent 68652703d6
commit 3e808a043d
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* {{ project.replace('_', ' ') }}
{% for candidate in candidates[project] %}
* `{{ candidate['fullname'] }} ({{ candidate['ircname'] }}) <{{ candidate['url'] }}>`__
* `{{ candidate['fullname'] }} {% if candidate['ircname'] is not none %}({{ candidate['ircname'] }}){% endif %} <{{ candidate['url'] }}>`__
{% endfor %}
{% endif %}{% endfor %}

View File

@ -2,5 +2,5 @@
======================
{% for candidate in candidates['TC'] %}
* `{{ candidate['fullname'] }} ({{ candidate['ircname'] }}) <{{ candidate['url'] }}>`__
* `{{ candidate['fullname'] }} {% if candidate['ircname'] is not none %}({{ candidate['ircname'] }}){% endif %} <{{ candidate['url'] }}>`__
{% endfor %}