Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
e69498a4
Commit
e69498a4
authored
Sep 02, 2019
by
IKEDA Soji
Browse files
Pending lists not clearly shown as "pending" in the web GUI (#738)
parent
c34ea0d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
default/web_tt2/my.tt2
View file @
e69498a4
...
...
@@ -13,7 +13,7 @@
[% END %]
<div class="item[% additional_class %]">
<div class="item_content">
<a
class="item_title"
href="[% 'info' | url_rel([l.key]) %]">
<a href="[% 'info' | url_rel([l.key]) %]">
[%|obfuscate(conf.spam_protection) %][% l.key %][% END %]
[% IF l.value.is_owner || l.value.is_editor || l.value.is_subscriber ~%]
<span class="highlighted">(
...
...
@@ -34,6 +34,11 @@
)</span>
[% END %]
</a>
[%~ IF l.value.status && l.value.status != 'open' ~%]
<span class="warning label">
[% l.value.status | optdesc('status') %]
</span>
[%~ END %]
<p class="list_subject">[% l.value.subject %]</p>
[% IF l.value.listsuspend %]
[% IF l.value.listenddate %]
...
...
src/cgi/wwsympa.fcgi.in
View file @
e69498a4
...
...
@@ -14180,6 +14180,7 @@ sub _set_my_lists_info {
my $l = $list->{'name'};
$which->{$l}{'subject'} = $list->{'admin'}{'subject'};
$which->{$l}{'status'} = $list->{'admin'}{'status'}; # new 6.2.46
$which->{$l}{'is_subscriber'} = 1; # New on 6.2b.2.
# Compat. < 6.2b.2.
$which->{$l}{'info'} = 1;
...
...
@@ -14236,6 +14237,7 @@ sub _set_my_lists_info {
my $l = $list->{'name'};
$which->{$l}{'subject'} = $list->{'admin'}{'subject'};
$which->{$l}{'status'} = $list->{'admin'}{'status'}; # new 6.2.46
$which->{$l}{'is_owner'} = 1; # New on 6.2b.2.
# Compat. < 6.2b.1.
$which->{$l}{'info'} = 1;
...
...
@@ -14247,6 +14249,7 @@ sub _set_my_lists_info {
my $l = $list->{'name'};
$which->{$l}{'subject'} = $list->{'admin'}{'subject'};
$which->{$l}{'status'} = $list->{'admin'}{'status'}; # new 6.2.46
$which->{$l}{'is_editor'} = 1; # New on 6.2b.2.
# Compat. < 6.2b.1.
$which->{$l}{'info'} = 1;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment