mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
Show post count even when other counts are hidden
This commit is contained in:
parent
4eada68d9f
commit
94271b34ac
2 changed files with 9 additions and 9 deletions
|
@ -66,13 +66,13 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if identity.local and identity.config_identity.visible_follows %}
|
<div class="view-options follows">
|
||||||
<div class="view-options follows">
|
<a href="{{ identity.urls.view }}" {% if not follows_page %}class="selected"{% endif %}><strong>{{ post_count }}</strong> posts</a>
|
||||||
<a href="{{ identity.urls.view }}" {% if not follows_page %}class="selected"{% endif %}><strong>{{ post_count }}</strong> posts</a>
|
{% if identity.local and identity.config_identity.visible_follows %}
|
||||||
<a href="{{ identity.urls.following }}" {% if not inbound and follows_page %}class="selected"{% endif %}><strong>{{ following_count }}</strong> following</a>
|
<a href="{{ identity.urls.following }}" {% if not inbound and follows_page %}class="selected"{% endif %}><strong>{{ following_count }}</strong> following</a>
|
||||||
<a href="{{ identity.urls.followers }}" {% if inbound and follows_page %}class="selected"{% endif %}><strong>{{ followers_count }}</strong> follower{{ followers_count|pluralize }}</a>
|
<a href="{{ identity.urls.followers }}" {% if inbound and follows_page %}class="selected"{% endif %}><strong>{{ followers_count }}</strong> follower{{ followers_count|pluralize }}</a>
|
||||||
</div>
|
{% endif %}
|
||||||
{% endif %}
|
</div>
|
||||||
|
|
||||||
{% if not identity.local %}
|
{% if not identity.local %}
|
||||||
{% if identity.outdated and not identity.name %}
|
{% if identity.outdated and not identity.name %}
|
||||||
|
|
|
@ -23,7 +23,7 @@ def test_visible_follows_disabled(client, identity):
|
||||||
"""
|
"""
|
||||||
Config.set_identity(identity, "visible_follows", True)
|
Config.set_identity(identity, "visible_follows", True)
|
||||||
response = client.get(identity.urls.view)
|
response = client.get(identity.urls.view)
|
||||||
assertContains(response, '<div class="view-options follows">', status_code=200)
|
assertContains(response, 'follower', status_code=200)
|
||||||
Config.set_identity(identity, "visible_follows", False)
|
Config.set_identity(identity, "visible_follows", False)
|
||||||
response = client.get(identity.urls.view)
|
response = client.get(identity.urls.view)
|
||||||
assertNotContains(response, '<div class="view-options follows">', status_code=200)
|
assertNotContains(response, 'follower', status_code=200)
|
||||||
|
|
Loading…
Reference in a new issue