-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* started annotations list * added checboxes to appellation list items * fixed button not disappearing when swithcing out of submitallappellation * add and remove from appellations in appellation list Changes to be committed: modified: annotations/static/annotations/js/annotators/appellationlist.js fixed git author * added select menu * added template rest view, serializer, removed empty graphys.py file, and added select to appellation list template * retrieve single part templates using rest_views, added select for templates, added serializer, removed dotenv files * fixed missing quote * added vuex, added vue dev build, concept picker now shows when clicking select concepts button. moved getCreatorName and getFormattedDate out of utils and into appellationlist and relationlist components. * started refactoring prepare method * started create from text view * added create from text method to create relations from a text to current appellations * added mass assignment field to relation template * changed vue to production * added select all, deselect all buttons. fixed adding of duplicate annotations list, fixed select concept button not hiding. added error message if upload fails. Fixed css on buttons * removed png.icloud images * removed xml.icloud files * added semicolons, comment, and changed vue to production * added migration file * fixed static part_id, user id, occursIn id and project Id. also removed vue.js file * [story/VGNWB-257] added moment js. * [story/VGNWB-257] refactored moment js, fixed wonky formatting, refactored layout to reduce clutter on smaller screens. * [story/VGNWB-257] added new css break point called xl, refactored layout to work on both larger screens and medium dpi screens * updated setAppellation to use slice to clone array to get ride of reference * Fixed validation errors. error is raised when nothing is selected and submit is clicked. Errors messages are removed once the error has been corrected. Once a concept is selected for a text, it will automatically populate the concept field. * added check/uncheck functionality through root event
- Loading branch information
Showing
35 changed files
with
15,917 additions
and
967 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,3 +65,6 @@ target/ | |
*.rdb | ||
|
||
node_modules | ||
.DS_STORE | ||
.env | ||
.vscode |
This file was deleted.
Oops, something went wrong.
Empty file.
20 changes: 20 additions & 0 deletions
20
annotations/migrations/0033_relationtemplate_use_in_mass_assignment.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.6 on 2019-03-13 20:19 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('annotations', '0032_auto_20170523_1753'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='relationtemplate', | ||
name='use_in_mass_assignment', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.