mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-08 20:10:17 +02:00
18 lines
646 B
Python
18 lines
646 B
Python
# this package generates profile URL for eve entities
|
|
# on 3rd party websites like evewho and zKillboard
|
|
#
|
|
# It contains of modules for views and templatetags for templates
|
|
|
|
# list of all eve entity categories as defined in ESI
|
|
_ESI_CATEGORY_AGENT = "agent"
|
|
_ESI_CATEGORY_ALLIANCE = "alliance"
|
|
_ESI_CATEGORY_CHARACTER = "character"
|
|
_ESI_CATEGORY_CONSTELLATION = "constellation"
|
|
_ESI_CATEGORY_CORPORATION = "corporation"
|
|
_ESI_CATEGORY_FACTION = "faction"
|
|
_ESI_CATEGORY_INVENTORYTYPE = "inventory_type"
|
|
_ESI_CATEGORY_REGION = "region"
|
|
_ESI_CATEGORY_SOLARSYSTEM = "solar_system"
|
|
_ESI_CATEGORY_STATION = "station"
|
|
_ESI_CATEGORY_WORMHOLE = "wormhole"
|