Aaron Kable
02fcf7d500
fix TS Tests with mySql
2023-04-10 19:45:28 +08:00
Ariel Rin
c1499d173f
!1481 - Alternate
2023-04-04 01:47:26 +00:00
Ariel Rin
b149baa4e5
Merge branch 'combine-imports' into 'master'
...
Combining imports
See merge request allianceauth/allianceauth!1478
2023-02-13 03:21:24 +00:00
Ariel Rin
93194b4f2d
pesky <
2023-01-25 16:17:29 +10:00
Erik Kalkoken
31c1f8bb7d
Faster management commands
2023-01-25 03:25:47 +00:00
Peter Pfeufer
2dc07b5519
Combining imports
2022-12-09 23:48:17 +01:00
Ariel Rin
399ef1917d
Version Bump 3.3.0
2022-10-14 21:46:28 +10:00
Ariel Rin
0f2f5ea0ba
nowrap to stop buttons moving around
2022-10-14 20:21:07 +10:00
Ariel Rin
1f781c5037
datatables statesave
2022-10-12 20:52:59 +10:00
Ariel Rin
36dedfcbd2
add disclaimer
2022-10-12 20:51:36 +10:00
Ariel Rin
13a05606fb
Scopes Typo
2022-10-12 20:29:42 +10:00
Ariel Rin
90ad7790e1
rename revoke to delete to be clearer
2022-10-12 20:22:20 +10:00
Ariel Rin
6b8341ab5a
Add FA icon to user dropdown
2022-10-12 20:21:27 +10:00
Ariel Rin
d15f42b3fd
Merge branch 'tokens-and-alts' of https://gitlab.com/aaronkable/allianceauth into tokens-and-alts
2022-10-12 20:07:49 +10:00
Aaron Kable
cc60b26f5a
add token management link to user dropdown
2022-10-12 17:57:12 +08:00
Aaron Kable
36ff0af993
Add token management and restrict logins to mains only
2022-10-12 17:50:41 +08:00
Aaron Kable
f17c94a9e1
Add token management and restrict logins to mains only
2022-10-12 17:49:28 +08:00
Ariel Rin
dd1313a2a9
Merge branch 'remove-unnecessary-lambda-statement' into 'master'
...
[REMOVED] Unnecessary `lambda` statement
See merge request allianceauth/allianceauth!1465
2022-10-09 08:17:46 +00:00
Peter Pfeufer
b34661b35d
[CHANGE] Better regex for exclusion in pre-commit
2022-09-18 08:26:22 +00:00
Ariel Rin
da102618a0
Version Bump 3.2.0
2022-09-14 23:26:02 +10:00
Ariel Rin
51ee281b14
Update from Transifex
2022-09-14 23:20:08 +10:00
Peter Pfeufer
9cbabee126
[CHANGE] Language names always start with a capital letter
2022-09-13 21:00:31 +02:00
Peter Pfeufer
4026523a2e
[REMOVED] Unnecessary lambda
statement
...
The `lambda` statement in `base.py` is unnecessary and has no effect.
```py
ugettext = lambda s: s
LANGUAGES = (
("en", ugettext("English")),
("de", ugettext("German")),
("es", ugettext("Spanish")),
("zh-hans", ugettext("Chinese Simplified")),
("ru", ugettext("Russian")),
("ko", ugettext("Korean")),
("fr", ugettext("French")),
("ja", ugettext("Japanese")),
("it", ugettext("Italian")),
)
```
In this case `ugettext = lambda s: s` is pretty much the same as:
```py
def ugettext(s):
return s
```
And would simply return the string the function receives as parameter.
So we can omit this completely and simplify the `LANGUAGES` list to:
```py
LANGUAGES = (
("en", "English"),
("de", "German"),
("es", "Spanish"),
("zh-hans", "Chinese Simplified"),
("ru", "Russian"),
("ko", "Korean"),
("fr", "French"),
("ja", "Japanese"),
("it", "Italian"),
)
```
2022-09-13 20:59:14 +02:00
Ariel Rin
7fbf96623b
Update from Transifex
2022-09-12 11:41:08 +10:00
Ariel Rin
273bda173e
Merge branch '1088-qol-improve-name-handling-for-smf' into 'master'
...
Displayed names for SMF
Closes #1088
See merge request allianceauth/allianceauth!1459
2022-09-11 13:53:25 +00:00
Ariel Rin
b232d9ab17
Merge branch 'use-SITE_URL-in-templates' into 'master'
...
[ADDED] `SITE_URL` usage in templates
See merge request allianceauth/allianceauth!1456
2022-09-11 13:51:21 +00:00
Ariel Rin
117ef63d90
Merge branch 'trailing-slash-it' into 'master'
...
[ADDED] Missing trailing slashes to URLs
See merge request allianceauth/allianceauth!1457
2022-09-11 13:45:50 +00:00
Ariel Rin
1bde3d5672
Merge branch 'esi-related-links-on-login' into 'master'
...
[ADDED] ESI related links in login box
See merge request allianceauth/allianceauth!1455
2022-09-11 13:44:55 +00:00
Ariel Rin
d2355b1ec8
Merge branch 'none-is-not-an-alliance' into 'master'
...
[CHANGE] None is not an alliance name, so don't show `None`
See merge request allianceauth/allianceauth!1460
2022-09-11 13:44:34 +00:00
Ariel Rin
191d474a8e
Merge branch 'task-queue-top-margin-fix' into 'master'
...
[FIX] Top margin on celery task percentage bar
See merge request allianceauth/allianceauth!1461
2022-09-11 13:44:11 +00:00
Peter Pfeufer
ec9a9733be
[FIX] Top margin on celery task percentage bar
2022-09-11 13:44:11 +00:00
Peter Pfeufer
18cbb994d5
[FIX] Use proper markup instead of fighting against Bootstrap
2022-09-08 11:22:40 +02:00
Peter Pfeufer
663388a0c2
[CHANGE] None is not an alliance name, so don't show None
2022-09-08 00:19:41 +02:00
Peter Pfeufer
7a943591ec
[ADDED] Migration to update existing user's displayed names
2022-09-07 23:01:38 +02:00
Peter Pfeufer
cd189927fe
[ADDED] Update displayed name when main is changed
2022-09-07 23:01:07 +02:00
Peter Pfeufer
8772349309
[ADDED] Main character name as displayed name on SMF service activation
2022-09-07 21:14:18 +02:00
Peter Pfeufer
34839e8344
[ADDED] Trailing slahes to URLs
...
URLs in AA usually use a trailing slash, so this was added to the ones that were missing it.
2022-09-07 15:18:06 +02:00
Peter Pfeufer
89ef4f4cbc
[ADDED] SITE_URL usage in templates
...
Instead of {{ request.scheme }}://{{request.get_host}}`
2022-09-07 15:04:25 +02:00
Peter Pfeufer
2cc7f46aae
[ADDED] ESI related links in login box
2022-09-07 14:45:04 +02:00
Ariel Rin
8d255fb720
Merge branch '834-check-if-character-is-online' into 'master'
...
[FIX] Check if character is online before accepting FAT click
Closes #834
See merge request allianceauth/allianceauth!1451
2022-09-07 06:29:19 +00:00
Ariel Rin
67cf68ad87
Merge branch 'no_unique_names' into 'master'
...
Corp and Alliance names are not unique
Closes #1317
See merge request allianceauth/allianceauth!1452
2022-09-07 06:28:01 +00:00
colcrunch
db1971d4c2
Corp and Alliance names are not unique
2022-09-07 06:28:01 +00:00
Ariel Rin
63c1521cba
Merge branch 'add-missing-doctype' into 'master'
...
[FIX] Missing DOCTYPE and padding
See merge request allianceauth/allianceauth!1449
2022-09-07 06:25:45 +00:00
Ariel Rin
ba7ef11505
Merge branch 'fix-deprecated-translation-tags' into 'master'
...
[FIX] Deprecated `{% blocktrans %}` tags to `{% blocktranslate %}`
See merge request allianceauth/allianceauth!1454
2022-09-07 06:22:55 +00:00
Ariel Rin
d2e494b9be
Merge branch 'modernize-css' into 'master'
...
CSS modernized
See merge request allianceauth/allianceauth!1448
2022-09-07 06:21:15 +00:00
Ariel Rin
98bab0b180
Merge branch 'bundle-all-the-things' into 'master'
...
Bundle the remaining static files
See merge request allianceauth/allianceauth!1447
2022-09-07 06:20:41 +00:00
Peter Pfeufer
70eb1b5b50
[CHANGE] Deprecated {% blocktrans %}
tags to {% blocktranslate %}
2022-09-06 23:48:36 +02:00
Peter Pfeufer
714431c932
[FIX] Check if character is online before accepting FAT click
...
Fixes #834
2022-08-07 12:08:57 +02:00
Peter Pfeufer
b026277ab0
[MISC] Clarify URL format
...
Seems his is causing confusion, so add a note that the URL should be without a trailing slash
2022-08-07 02:01:26 +02:00
Peter Pfeufer
11855f0b54
[FIX] Missing DOCTYPE and padding
2022-08-05 19:51:50 +02:00