dependabot[bot]
0fe4b9dab5
Bump django from 3.2.4 to 3.2.5
Bumps [django](https://github.com/django/django ) from 3.2.4 to 3.2.5.
- [Release notes](https://github.com/django/django/releases )
- [Commits](https://github.com/django/django/compare/3.2.4...3.2.5 )
---
updated-dependencies:
- dependency-name: django
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
3 years ago
Yosua Michael M
d56d742d08
Increase the allowed max length for uploaded dataset filepath
3 years ago
youichiro
9e5e87048d
not display legend of bar-chart
3 years ago
youichiro
2db5f00bb7
show progress of each role
3 years ago
youichiro
bb0bbb2a95
make progress data per role
3 years ago
youichiro
58c04f7217
receive confirmed count value in frontend statistics models
3 years ago
youichiro
778729588f
add confirmed count to statistics api response
3 years ago
Colin Darie
e1834c919b
Sequence labelling: fix background color in dark mode
3 years ago
youichiro
d122404254
add tests
3 years ago
youichiro
94ce5e6685
move ExampleSerializer tests to test_document.py
3 years ago
youichiro
3dbc856923
fix isort
3 years ago
youichiro
28052f6e38
fix TestExampleStateConfirmCollaborative
3 years ago
youichiro
659d96c2ad
fix flake8
3 years ago
youichiro
263deb238a
separate confirm status for each role or user
3 years ago
youichiro
47831f0782
add a property to the ExampleState model
3 years ago
youichiro
7ee3e390a6
filter by role in the confirm API
3 years ago
youichiro
209bd579f0
show a check button for annotators
3 years ago
Dale Evans
abbb662dbe
update cloudformation template to modify the sample env file, now that
all the config params are stored in environment variables as per commit
57286362ce
3 years ago
rcarew@xelerance.com
5317fef860
Python version pinning fix
3 years ago
Hiroki Nakayama
3bf91c1e30
Merge pull request #1430 from SauceCat/feature/display_image
support image display and url handling
3 years ago
Hiroki Nakayama
d3f54ce547
Merge pull request #1412 from scheiblr/master
put variables to .env file
3 years ago
Hiroki Nakayama
34a8d83347
Merge pull request #1453 from youichiro/restrict_project_creation_to_staff_users
Restrict project creation to staff users
3 years ago
rcarew@xelerance.com
186442aa3e
Updated various dependency and image versions
3 years ago
youichiro
bbea3db22a
remove .node-version
3 years ago
youichiro
ed37696a67
manage permissions with permission_classes
3 years ago
Dimid Duchovny
d58cd28921
iss1348: fix colors when importing labels
Signed-off-by: Dimid Duchovny <dimidd@localize.city>
3 years ago
youichiro
a6397eb5ec
fix setIsStaff
3 years ago
Hiroki Nakayama
50db4e9f36
Merge pull request #1458 from ghontolux/fix/show-all-project-types-de-fr-zh
Fix: Show all Project Types (de, fr, zh) in Add Project Interface
3 years ago
Gerhard Haß
d12125c41d
added missing project names (zh)
3 years ago
Gerhard Haß
912c7ec210
added missing project type names for english and french
3 years ago
youichiro
e5ad3c6f8b
update backend project view test
3 years ago
youichiro
5f161ce241
don't display create and delete project button if user is not staff
3 years ago
youichiro
147a1fe4fc
add isStaff state to auth Vuex store
3 years ago
youichiro
46f9b73d5a
add is_staff column to user interfaces
3 years ago
youichiro
4a879d3697
return user.is_staff in user API response
3 years ago
youichiro
6c70092362
restrict project creation to staff users
3 years ago
youichiro
832035da5b
add a new exception
3 years ago
Hiroki Nakayama
80c855bc31
Merge pull request #1449 from youichiro/fix_typo_of_exception_name
Fix typo of exception name
3 years ago
youichiro
ad221a6c2c
fix import order
3 years ago
youichiro
c6dbab2ed6
fix typo
3 years ago
zanussbaum
df61e8a012
removing debugging statement
3 years ago
Roland Szabo
62bc03f6c1
Remove unneed import
3 years ago
Roland Szabo
0243c73462
Remove unneeded query
Bulk create returns the created objects in the same order as they have been added.
In Postgres, the query was wrong, because ordering was not guaranteed.
3 years ago
Roland Szabo
2f47b8c4d6
Return a Response with a status if the task is not yet ready.
3 years ago
Roland Szabo
0906e789f6
Sort imports
3 years ago
Roland Szabo
d4cb96f4fd
Add admin interface for AutoLabelingConfigs. Solves #1423
Thanks to @uklft for the idea.
3 years ago
ayanamizuta
b1503712e7
add annotation link in commentList page
3 years ago
ayanamizuta
7a3418841d
fix client-side types about comment as backend returns
3 years ago
youichiro
197d17182c
move later to copy files in Dockerfile.prod
3 years ago
zanussbaum
9bf6c52347
Fixing Data Annotation Issues
When uploading datasets, the code uses a `bulk_create` to upload
Examples and Labels. It then filters the data from the database
based on when it was created. However, [Django doesn't enforce
the list order when calling filter](https://stackoverflow.com/questions/7163640/what-is-the-default-order-of-a-list-returned-from-a-django-filter-call )
unless ordering is specified. The previous behavior mismatched labels
and examples. When this was shown in the UI, the data would show labels
for incorrect examples (i.e. a label for message #2 would be shown on
message #1 ). This fix enforces that the data is returned in the order
it was inserted so that the data, label pair is as expected.
3 years ago