Commit Graph

2703 Commits

Author SHA1 Message Date
Corentin Sechet 096d396c84 translation update 2022-05-27 14:00:18 +02:00
Corentin Sechet 3d4f53fde3 manager: add link to export page snapshot (#62023) 2022-05-27 13:57:02 +02:00
Corentin Sechet 2b68a863ed misc: move title fields to appearance tab (#64681) 2022-05-27 13:33:03 +02:00
Valentin Deniaud f3727f829d dataviz: do not raise error in check_validity (#65615)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-27 08:32:17 +02:00
Valentin Deniaud d05406d9a0 dataviz: get request when possible on subfilters update (#65615) 2022-05-27 08:32:15 +02:00
Valentin Deniaud eed78d8f6a dataviz: pass request in context during page variable evaluation (#65348) 2022-05-27 08:28:47 +02:00
Valentin Deniaud 348f9b50bf dataviz: add prefix to filters cell form (#65348) 2022-05-27 08:28:47 +02:00
Frédéric Péters 59a9d2f352 general: always unfold targetted cell (#64563) 2022-05-27 08:26:16 +02:00
Frédéric Péters af51c0c20b manager: increase width of textarea in cell properties (#65654) 2022-05-27 08:26:00 +02:00
Frédéric Péters f3295f1451 manager: switch page reordering request to POST (#65617) 2022-05-27 08:25:52 +02:00
Frédéric Péters ed358aed7e notifications: do not notify anonymous user (#64497)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-23 15:27:35 +02:00
Frédéric Péters cd71255ae5 notifications: rename "founded_uuids" to "existing_uuids" (#64497) 2022-05-23 15:27:35 +02:00
Frédéric Péters f10d789389 translation update 2022-05-17 09:16:24 +02:00
Valentin Deniaud ce0a65a35e manager: avoid validation errors on dynamic fields in cell edit form (#65163) 2022-05-16 17:44:06 +02:00
Valentin Deniaud b47c3e4219 manager: remove dead code (#65163) 2022-05-16 17:38:55 +02:00
Emmanuel Cazenave 0850accd99 misc: use legacy urls to call up to date urls (#65024)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-16 15:44:57 +02:00
Valentin Deniaud a97c740dac dataviz: add support for filter deprecation (#65140) 2022-05-16 11:01:07 +02:00
Valentin Deniaud c909f70ad6 dataviz: add option groups support (#65134) 2022-05-16 11:00:55 +02:00
Benjamin Dauvergne ccb841e289 lingo: move eopayment options from backend to regie when scope change (#65141) 2022-05-13 16:15:19 +02:00
Lauréline Guérin b6dc499003
wcs: publik-django-templatetags integration (#64803)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-13 14:18:12 +02:00
Frédéric Péters 4f9abf2d00 assets: return asset URL as response of "set" API (#64970)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-06 21:12:05 +02:00
Frédéric Péters 72a5123831 dataviz: set x-frame-options to sameorigin for embedded graphs (#64826) 2022-05-04 20:50:18 +02:00
Frédéric Péters b29a6140be translation update 2022-05-02 16:57:42 +02:00
Frédéric Péters 6b44b605c6 settings: add translatable strings for publik-base-theme (#62413) 2022-05-02 16:53:49 +02:00
Frédéric Péters b02b7b0e5b misc: add option for placeholders to create an outer tag (#62415)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-05-02 15:53:45 +02:00
Frédéric Péters 9da25d0f8c misc: extend cell size options, use a dedicated widget (#62072)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-22 14:03:13 +02:00
Frédéric Péters 5b19cf1113 general: add possibily to layout placeholder cells in flex grid (#62072) 2022-04-22 14:02:04 +02:00
Frédéric Péters 9dba7d1245 lingo: comment is_notifiable() and do not log non-errors (#64460) 2022-04-22 12:38:27 +02:00
Frédéric Péters 48b09b4105 translation update 2022-04-21 17:55:05 +02:00
Valentin Deniaud a52491ea5e dataviz: load table charts asynchronously (#64315) 2022-04-20 16:17:52 +02:00
Corentin Sechet 5f918b53c0 dataviz: using natural order for alphabetical data sort (#62317) 2022-04-20 10:52:21 +02:00
Frédéric Péters 411c0f025e translation update 2022-04-19 19:27:13 +02:00
Frédéric Péters 2d8a6cfb5c pwa: add support for maskable icons (#64297) 2022-04-19 19:20:42 +02:00
Frédéric Péters 68e7070377 misc: adapt skeletontemplate tag for 3.2 (#64298)
This follows this django change:

commit 04ac9b45a34440fa447feb6ae934687aacbfc5f4
Author: Alex Gaynor <alex.gaynor@gmail.com>
Date:   Tue Oct 8 22:25:20 2019 -0400

    Improved performance of django.template.base.Parser.

    pop(0), which is used to fetch each token, is O(n) in the length of the
    list. By reversing the list and operating off the end, we can perform
    next_token(), prepend_token(), and delete_first_token() in constant
    time.
2022-04-18 18:03:58 +02:00
Frédéric Péters b19febc92a translation update (spelling) 2022-04-18 18:03:35 +02:00
Frédéric Péters 4ab6c803f2 trivial: remove usage of obsolete python_2_unicode_compatible (#64292) 2022-04-17 11:15:43 +02:00
Frédéric Péters 76904d5e6c translation update 2022-04-15 21:19:57 +02:00
Frédéric Péters d9eeeeea61 misc: remove usage of django.utils.six (#63683)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-15 16:42:01 +02:00
Frédéric Péters 514d8bbaaf translation update 2022-04-15 16:14:32 +02:00
Lauréline Guérin dd74d196f6
style: add messages only if requested in styles demo page(#62172)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-15 15:12:07 +02:00
Lauréline Guérin bed3ff7ed8
cells: option to bypass LinkCell url validity check (#62136)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-15 09:14:50 +02:00
Lauréline Guérin 71be7b1d86
misc: git ignore combo.manager.css 2022-04-15 09:14:50 +02:00
Lauréline Guérin cf980643eb
wcs: fix cell rendering with anonymous users (#63220)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-15 08:37:51 +02:00
Frédéric Péters 6a33066ac9 wcs: add cache_duration advanced option to "forms in your care" cell (#63390) 2022-04-15 08:25:10 +02:00
Frédéric Péters 2ba7eb256e misc: add possibility to define tabs by specifying fields (#63390) 2022-04-15 08:25:10 +02:00
Frédéric Péters b406d1808c wcs: mark "forms in your care" cell as valid on save (#63807) 2022-04-15 08:25:10 +02:00
Frédéric Péters a3f5786473 wcs: force an (empty) value for custom schema (#63935) 2022-04-14 17:08:10 +02:00
Frédéric Péters 518bf6ca4e trivial: remove trailing spaces 2022-04-12 08:21:58 +02:00
Lauréline Guérin fe50a2bc05
manager: fix page reorder with missing param (#63650)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-08 09:19:21 +02:00
Lauréline Guérin d24640eb7b
family: use with_status param in chrono url (#63325)
gitea-wip/combo/pipeline/head There was a failure building this commit Details
gitea/combo/pipeline/head Something is wrong with the build of this commit Details
2022-04-07 09:07:02 +02:00