forked from MarseyWorld/MarseyWorld
appropriate plural
parent
9d4951c225
commit
9d49e51146
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}@{{u.username}}'s blockers{% endblock %}
|
{% block pagetitle %}@{{u.username}}'s blockers{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">@{{u.username}}'s blockers ({{total}} users)</h5>
|
<h5 class="my-3">@{{u.username}}'s blockers ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -24,3 +24,5 @@
|
||||||
{% block pagenav %}
|
{% block pagenav %}
|
||||||
{% include "pagination.html" %}
|
{% include "pagination.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
({{total}} user{{macros.plural(total)}})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}Users blocked by @{{u.username}}{% endblock %}
|
{% block pagetitle %}Users blocked by @{{u.username}}{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">Users blocked by @{{u.username}} ({{total}} users)</h5>
|
<h5 class="my-3">Users blocked by @{{u.username}} ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}@{{u.username}}'s followers{% endblock %}
|
{% block pagetitle %}@{{u.username}}'s followers{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">@{{u.username}}'s followers ({{total}} users)</h5>
|
<h5 class="my-3">@{{u.username}}'s followers ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}Users followed by @{{u.username}}{% endblock %}
|
{% block pagetitle %}Users followed by @{{u.username}}{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">Users followed by @{{u.username}} ({{total}} users)</h5>
|
<h5 class="my-3">Users followed by @{{u.username}} ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}@{{u.username}}'s notification muters{% endblock %}
|
{% block pagetitle %}@{{u.username}}'s notification muters{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">@{{u.username}}'s notification muters ({{total}} users)</h5>
|
<h5 class="my-3">@{{u.username}}'s notification muters ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block pagetitle %}Users whose notifications are muted by @{{u.username}}{% endblock %}
|
{% block pagetitle %}Users whose notifications are muted by @{{u.username}}{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h5 class="my-3">Users whose notifications are muted by @{{u.username}} ({{total}} users)</h5>
|
<h5 class="my-3">Users whose notifications are muted by @{{u.username}} ({{total}} user{{macros.plural(total)}})</h5>
|
||||||
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white">
|
<thead class="bg-primary text-white">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue