##// 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
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0 from django.contrib import admin
Juan C. Espinoza
Add compatibility with embed CGS in RC
r328 from .models import RCConfiguration, RCLine, RCLineType, RCLineCode, RCClock
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0
# Register your models here.
Juan C. Espinoza
Updating base models and views ...
r6
admin.site.register(RCConfiguration)
Juan C. Espinoza
Add rc config mods...
r23 admin.site.register(RCLine)
admin.site.register(RCLineType)
Juan C. Espinoza
Updates to models, views & forms for CR...
r25 admin.site.register(RCLineCode)
Juan C. Espinoza
Add compatibility with embed CGS in RC
r328 admin.site.register(RCClock)