aa-structures 2.6.1__py3-none-any.whl → 2.6.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {aa_structures-2.6.1.dist-info → aa_structures-2.6.2.dist-info}/METADATA +1 -1
  2. {aa_structures-2.6.1.dist-info → aa_structures-2.6.2.dist-info}/RECORD +27 -27
  3. structures/__init__.py +1 -1
  4. structures/core/notification_embeds/billing_embeds.py +2 -1
  5. structures/core/notification_embeds/character_embeds.py +7 -6
  6. structures/core/notification_embeds/main.py +2 -2
  7. structures/core/notification_embeds/moonmining_embeds.py +11 -12
  8. structures/core/notification_embeds/orbital_embeds.py +4 -3
  9. structures/core/notification_embeds/sov_embeds.py +9 -17
  10. structures/core/notification_embeds/structures_embeds.py +27 -23
  11. structures/core/notification_embeds/tower_embeds.py +16 -10
  12. structures/locale/de/LC_MESSAGES/django.po +493 -46
  13. structures/locale/django.pot +502 -46
  14. structures/locale/en/LC_MESSAGES/django.po +502 -46
  15. structures/locale/es/LC_MESSAGES/django.po +493 -46
  16. structures/locale/fr_FR/LC_MESSAGES/django.po +502 -46
  17. structures/locale/it_IT/LC_MESSAGES/django.po +502 -46
  18. structures/locale/ja/LC_MESSAGES/django.po +502 -46
  19. structures/locale/ko_KR/LC_MESSAGES/django.po +493 -46
  20. structures/locale/ru/LC_MESSAGES/django.mo +0 -0
  21. structures/locale/ru/LC_MESSAGES/django.po +562 -52
  22. structures/locale/uk/LC_MESSAGES/django.po +493 -46
  23. structures/locale/zh_Hans/LC_MESSAGES/django.po +493 -46
  24. structures/templates/structures/base.html +1 -1
  25. structures/views.py +0 -1
  26. {aa_structures-2.6.1.dist-info → aa_structures-2.6.2.dist-info}/LICENSE +0 -0
  27. {aa_structures-2.6.1.dist-info → aa_structures-2.6.2.dist-info}/WHEEL +0 -0
@@ -4,7 +4,7 @@
4
4
  {% block page_title %}{% translate "Structures" %}{% endblock %}
5
5
 
6
6
  {% block content %}
7
- <h2 class="text-center">{{ page_title }}</h2>
7
+ <h2 class="text-center">{% translate "Structures" %}</h2>
8
8
  <div class="col-lg-12 container">
9
9
  {% block details %}{% endblock %}
10
10
  </div>
structures/views.py CHANGED
@@ -101,7 +101,6 @@ def main(request):
101
101
  form = TagsFilterForm(initial={x.name: True for x in active_tags})
102
102
 
103
103
  context = {
104
- "page_title": __title__,
105
104
  "active_tags": active_tags,
106
105
  "tags_filter_form": form,
107
106
  "tags_exist": StructureTag.objects.exists(),