Removed from admin index page
[htsworkflow.git] / htsworkflow / frontend / reports / admin.py
1 from htsworkflow.frontend.reports.models import ProgressReport
2 from django.contrib import admin
3 from django.utils.translation import ugettext_lazy as _
4
5 class ProgressReportOptions(admin.ModelAdmin):
6   list_display = ('Study','ab_batch','cell_line','library','sequencing','aligned_reads','QPCR','submit_to_DCC','submit_to_NCBI','interactome_complete')
7   ## list_filter = ('interactome_complete')
8
9 #admin.site.register(ProgressReport, ProgressReportOptions)
10