Metadata-Version: 2.4
Name: aa-theme-zima
Version: 0.2.5
Summary: Theme for zimacorp.space
Author: Boris Talovikov
Author-email: Boris Talovikov <boris@talovikov.ru>
License-Expression: GPL-3.0-or-later
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: allianceauth>=3.6
Requires-Python: >=3.10, <4
Project-URL: Repository, https://gitlab.com/zima-corp/aa-theme-zima
Description-Content-Type: text/markdown

# Alliance Auth Zima Theme

## Installation

```shell
pip install git+https://gitlab.com/zima-corp/aa-theme-zima.git
```

Now open your `local.py` and add the following right below your `INSTALLED_APPS`:
```python
# Zima Theme - https://gitlab.com/zima-corp/aa-theme-zima
INSTALLED_APPS.insert(0, "aa_theme_zima")
```

After installation, run the command:
```shell
python manage.py collectstatic
```

## Upgrade

```shell
python manage.py collectstatic
```

**Important**

If you are using [aa-gdpr](https://gitlab.com/tactical-supremacy/aa-gdpr), the template stuff needs to be **after** the `aa-gdpr`
entry, like this:

```python
# GDPR Compliance
INSTALLED_APPS.insert(0, "aagdpr")
AVOID_CDN = True


# Zima Theme - https://gitlab.com/zima-corp/aa-theme-zima
INSTALLED_APPS.insert(0, "aa_theme_zima")
```
