Package omeroweb :: Package webgateway :: Module admin
[hide private]
[frames] | no frames]

Source Code for Module omeroweb.webgateway.admin

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  # 
 4  # webgateway/admin.py - django application admin view 
 5  #  
 6  # Copyright (c) 2008, 2009 Glencoe Software, Inc. All rights reserved. 
 7  #  
 8  # This software is distributed under the terms described by the LICENCE file 
 9  # you can find at the root of the distribution bundle, which states you are 
10  # free to use it only for non commercial purposes. 
11  # If the file is missing please request a copy by contacting 
12  # jason@glencoesoftware.com. 
13  # 
14  # Author: Carlos Neves <carlos(at)glencoesoftware.com> 
15   
16  #from models import StoredConnection 
17  #from django.contrib import admin 
18  #from django.utils.translation import ugettext_lazy as _ 
19   
20  #class StoredConnectionOptions(admin.ModelAdmin): 
21  #  list_display = ('base_path', 'config_file', 'username', 'failcount') 
22   
23  #admin.site.register(StoredConnection, StoredConnectionOptions) 
24