diff --git a/ietf/static/ietf/css/ietf.css b/ietf/static/ietf/css/ietf.css
index a0e48e2d3..56810e601 100644
--- a/ietf/static/ietf/css/ietf.css
+++ b/ietf/static/ietf/css/ietf.css
@@ -430,6 +430,10 @@ td.area-director div { border-bottom: solid #ccc 1px; }
h1 small .pull-right { margin-top: 10.5px; }
+/* from bootstrap: .small { font-size: 84%; } */
+
+.tiny { font-size: 70%; }
+
.large {font-size: 120%;}
.llarge {font-size: 144%;}
.lllarge {font-size: 172.8%;}
diff --git a/ietf/templates/group/active_ags.html b/ietf/templates/group/active_ags.html
index 1fec5a94c..04ccd695a 100644
--- a/ietf/templates/group/active_ags.html
+++ b/ietf/templates/group/active_ags.html
@@ -28,17 +28,20 @@
{{ group.name }} |
{% for ad in group.ads %}
- {{ ad.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ ad.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% for secretary in group.secretaries %}
- {{ secretary.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ secretary.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% for chair in group.chairs %}
- {{ chair.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ chair.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
diff --git a/ietf/templates/group/active_dirs.html b/ietf/templates/group/active_dirs.html
index f612e0010..c689c0529 100644
--- a/ietf/templates/group/active_dirs.html
+++ b/ietf/templates/group/active_dirs.html
@@ -31,17 +31,20 @@
{{ group.parent.acronym }} |
{% for ad in group.ads %}
- {{ ad.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ ad.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% for secretary in group.secretaries %}
- {{ secretary.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ secretary.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% for chair in group.chairs %}
- {{ chair.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ chair.person.plain_name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
|
diff --git a/ietf/templates/group/active_rgs.html b/ietf/templates/group/active_rgs.html
index 0602d6783..1882d1985 100644
--- a/ietf/templates/group/active_rgs.html
+++ b/ietf/templates/group/active_rgs.html
@@ -13,7 +13,10 @@
Active IRTF research groups
IRTF chair
- {{ irtf.chair.person.plain_name }}
+
+
+ {{ irtf.chair.person.plain_name }}
+
Active research groups
Status Reports
@@ -32,7 +35,11 @@
{{ group.acronym }} |
{{ group.name }} |
- {% for chair in group.chairs %}{{ chair.person.plain_name }}{% if not forloop.last %}, {% endif %}{% endfor %} |
+
+ {% for chair in group.chairs %}
+ {{ chair.person.plain_name }}
+ {% if not forloop.last %} , {% endif %}
+ {% endfor %} |
{% endfor %}
diff --git a/ietf/templates/group/active_teams.html b/ietf/templates/group/active_teams.html
index b39e52d3f..4c7a7d9ca 100644
--- a/ietf/templates/group/active_teams.html
+++ b/ietf/templates/group/active_teams.html
@@ -27,7 +27,8 @@
{{ group.name }} |
{% for chair in group.chairs %}
- {{ chair.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ chair.person.plain_name }}
+ {% if not forloop.last %} , {% endif %}
{% endfor %}
|
diff --git a/ietf/templates/group/active_wgs.html b/ietf/templates/group/active_wgs.html
index db088d32c..1c0cd5790 100644
--- a/ietf/templates/group/active_wgs.html
+++ b/ietf/templates/group/active_wgs.html
@@ -30,7 +30,8 @@
{% for ad in area.ads %}
-
- {{ ad.person.plain_name }} ({{ ad.email.address }})
+
+ {{ ad.person.plain_name }}
{% if ad.name == "pre-ad" %} (Incoming AD){% endif %}
{% endfor %}
@@ -62,12 +63,14 @@
{{ group.acronym }} |
- {{ group.ad_role.person.plain_name.split.0 }}
+
+ {{ group.ad_role.person.plain_name.split.0 }}
|
{{ group.name }} |
{% for chair in group.chairs %}
- {{ chair.person.plain_name }}{% if not forloop.last %}, {% endif %}
+ {{ chair.person.plain_name }}
+ {% if not forloop.last %} , {% endif %}
{% endfor %}
{% if group.ad_out_of_area %}(Assigned AD: {{ group.ad_role.person.plain_name }}){% endif %}
|
diff --git a/ietf/utils/test_data.py b/ietf/utils/test_data.py
index df01838e0..dd60ae100 100644
--- a/ietf/utils/test_data.py
+++ b/ietf/utils/test_data.py
@@ -99,10 +99,11 @@ def make_immutable_base_data():
# second area
opsarea = create_group(name="Operations", acronym="ops", type_id="area", parent=ietf)
- create_person(opsarea, "ad")
+ ops_ad = create_person(opsarea, "ad")
sops = create_group(name="Server Operations", acronym="sops", type_id="wg", parent=opsarea)
create_person(sops, "chair", name="Sops Chairman", username="sopschairman")
create_person(sops, "secr", name="Sops Secretary", username="sopssecretary")
+ Role.objects.create(name_id='ad', group=sops, person=ops_ad, email=ops_ad.email())
# create a bunch of ads for swarm tests
for i in range(1, 10):