This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully functional, bare-bones LIDE Web Services
Based on initial new DB design; needs refining.
- Loading branch information
1 parent
9de2fc6
commit 442cb99
Showing
8 changed files
with
378 additions
and
140 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 |
---|---|---|
@@ -1 +1 @@ | ||
"#LIDE" | ||
#LIDE |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
from django.contrib import admin | ||
from lideservices.models import * | ||
|
||
# Register your models here. | ||
|
||
admin.site.register(Sample, SimpleHistoryAdmin) | ||
admin.site.register(SampleType, SimpleHistoryAdmin) | ||
admin.site.register(SampleEnvironment, SimpleHistoryAdmin) | ||
admin.site.register(SampleLocation, SimpleHistoryAdmin) | ||
admin.site.register(FilterType, SimpleHistoryAdmin) | ||
admin.site.register(WaterType, SimpleHistoryAdmin) | ||
admin.site.register(Study, SimpleHistoryAdmin) | ||
admin.site.register(AnalysisBatch, SimpleHistoryAdmin) | ||
admin.site.register(Extraction, SimpleHistoryAdmin) | ||
admin.site.register(Inhibition, SimpleHistoryAdmin) | ||
admin.site.register(ReverseTranscription, SimpleHistoryAdmin) | ||
admin.site.register(PCRReplicate, SimpleHistoryAdmin) | ||
admin.site.register(StandardCurve, SimpleHistoryAdmin) | ||
admin.site.register(Target, SimpleHistoryAdmin) | ||
admin.site.register(ControlType, SimpleHistoryAdmin) | ||
admin.site.register(Control, SimpleHistoryAdmin) | ||
admin.site.register(OtherAnalysis, SimpleHistoryAdmin) |
Oops, something went wrong.