##// END OF EJS Templates
Add compatibility with embed CGS in RC
Add compatibility with embed CGS in RC

File last commit:

r328:e61e12b2d8be
r328:e61e12b2d8be
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)