##// END OF EJS Templates
Check the readme.md for the bokeh version notes and requeriments.
Check the readme.md for the bokeh version notes and requeriments.

File last commit:

r328:e61e12b2d8be
r344:ada396c7b35b
Show More
admin.py
10 lines | 299 B | text/x-python | PythonLexer
from django.contrib import admin
from .models import RCConfiguration, RCLine, RCLineType, RCLineCode, RCClock
# Register your models here.
admin.site.register(RCConfiguration)
admin.site.register(RCLine)
admin.site.register(RCLineType)
admin.site.register(RCLineCode)
admin.site.register(RCClock)