Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
b60367d
More filters for SurgeAlerts
szabozoltan69 Oct 15, 2025
8db9bcb
Update CHANGELOG.md
szabozoltan69 Oct 20, 2025
5991b9d
AppealDocumentAdmin ordering possibility by first column
szabozoltan69 Oct 23, 2025
39e133f
Allow non-superuser DREF3 queries also + unit test chg
szabozoltan69 Oct 24, 2025
167c32d
Endpoint and serializer for Health units
szabozoltan69 Oct 25, 2025
63f1a50
Filters and tests for Health units
szabozoltan69 Oct 26, 2025
123c8a9
Better AppealFilter usage in DREF3
szabozoltan69 Oct 27, 2025
8b2661a
AuthPowerBI endpoint with some tests
szabozoltan69 Oct 27, 2025
5a7e5cc
AuthPowerBI env vars
szabozoltan69 Oct 27, 2025
fd81db9
Merge pull request #2570 from IFRCGo/feature/embed-pbi
szabozoltan69 Oct 27, 2025
ab5183f
AuthPowerBI env vars v2
szabozoltan69 Oct 27, 2025
2d4134e
AuthPowerBI env vars v3
szabozoltan69 Oct 27, 2025
514e327
AuthPowerBI env vars v4 – keeping only workspace_id as env var
szabozoltan69 Oct 28, 2025
af17e84
Merge pull request #2572 from IFRCGo/feature/api-endpoint-for-health-…
szabozoltan69 Oct 30, 2025
f2ac8b6
fix(dref): Handle auto creation of instance for M2M fields
susilnem Oct 14, 2025
7e1fb7d
chore(dref): Enable and remove skip_fields from dref translation
susilnem Nov 5, 2025
c2750a6
chore(test): Update snapshots deployments test cases
susilnem Nov 5, 2025
cb1c724
Merge pull request #2567 from IFRCGo/fix/dref-m2m
frozenhelium Nov 5, 2025
9492a48
feat(dref): update dref status
sudip-khanal Sep 11, 2025
687ae36
refactor is published to status
sudip-khanal Sep 17, 2025
0fa4ee2
refactor(dref): refactor is published to staus
sudip-khanal Sep 17, 2025
742f46d
feat(dref): add dref finalize api
sudip-khanal Sep 19, 2025
4b60d06
feat(dref): add finalize api for Dref operational update and final re…
sudip-khanal Sep 23, 2025
9a1e361
fix(dref): update finalize API logic
sudip-khanal Oct 12, 2025
4466145
feat(dref): add translation completion check
sudip-khanal Oct 14, 2025
16663a1
feat(dref): migrate original_language field with 'en' for existing re…
sudip-khanal Oct 14, 2025
e79f379
fix(dref): update finalize api and translation check logic
sudip-khanal Oct 14, 2025
f103dbf
feat(dref): add translation retrigger logic in finalize API
sudip-khanal Oct 15, 2025
59790b9
chore(dref): remove skip_fields from dref translation
sudip-khanal Oct 16, 2025
10454fa
fix(dref): set original_language from current active language for dre…
sudip-khanal Oct 16, 2025
105dcb1
fix(dref): rename original_language field to starting_language
sudip-khanal Oct 17, 2025
aa56056
chore(translation): update and sync translation files across all locale
sudip-khanal Oct 17, 2025
3cc549c
fix: redis lock handling and update translation check method
sudip-khanal Oct 29, 2025
b40c591
refactor(dref): refactor dref finalize logic
sudip-khanal Nov 5, 2025
ed5c2f4
chore(dref): merge migrations
sudip-khanal Nov 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

- More filters for SurgeAlerts
- ERU filters to Admin page
- Verbose ERU listing on Admin page
- NS initiatives categories translated
- Rename Users per permission in Admin index
- Fix .pre-commit-config.yaml to skip migration files
- Expose Permissions entry at Authentication and Authorization
- Better search for User groups – worldwise
- Add filter and SU flag to the User query page
- Admin page to query users by permissions
- Use safe_username where + can be present
- Translate NSIA Risk of NS-initiatives
- Skips fields on dref translation
- Add NSIA Risk field to NS-initiatives
- Fix local unit health data reader

## 1.1.507

### Added
Expand Down
3 changes: 3 additions & 0 deletions api/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from django.contrib.auth.models import Permission, User
from django.contrib.gis import admin as geoadmin
from django.core.exceptions import ValidationError
from django.db.models import Value
from django.db.models.functions import Concat
from django.http import HttpResponse, HttpResponseRedirect
from django.urls import reverse
from django.utils.html import format_html, format_html_join
Expand Down Expand Up @@ -517,6 +519,7 @@ def save_model(self, request, obj, form, change):


class AppealDocumentAdmin(CompareVersionAdmin, RegionRestrictedAdmin, TranslationAdmin):
@admin.display(ordering=Concat("appeal", Value(","), "name"))
def appeal_document_label(self, obj):
return "%s - %s" % (obj.appeal, obj.name)

Expand Down
Binary file modified api/locale/ar/LC_MESSAGES/django.mo
Binary file not shown.
Loading