Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions docs/managing_data/tom_direct_sharing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ When your TOM receives a new ``Target`` from another TOM it will be saved to you
or alias doesn't match that of a target that already exists in the database, a new target will be created and added to a
new ``TargetList`` called "Imported from <TOM Name>".

Targets shared from a TOM with a custom ``Target`` model that has unique model fields will fill out any identically
named fields in your ``Target`` model and the remaining fields will be ingested as ``TargetExtras``.

Target Lists:
-------------
When your TOM receives a new ``TargetList`` from another TOM it will be saved to your TOM's database. If the targets in
Expand Down
4 changes: 3 additions & 1 deletion tom_dataservices/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ def __init__(self, *args, **kwargs):
Column(
'data_service'
),
),
Row(
Column(
ButtonHolder(
Submit('Update', 'Update Reduced Data'), css_class="bottom"
Submit('Update', 'Update Reduced Data')
)
),
)
Expand Down
Loading