Changeset 3547 for waeup/trunk
- Timestamp:
- 1 Jul 2008, 07:59:11 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/trunk/src/waeup/students/studentcontainer.py
r3529 r3547 16 16 class Import(grok.View): 17 17 def render(self): 18 #XXX TODO: Make import form to choose csv-file 18 19 t = [0] 19 20 src = os.path.join(os.path.dirname(__file__), '..', 'tests', 20 ' results2.csv')21 'TestData','results2.csv') 21 22 inputfile = file(src, "r") 22 23 num = 0 … … 32 33 class Export(grok.View): 33 34 def render(self): 35 #XXX TODO: Make export form to choose csv-file 34 36 t = [0] 35 37 result = []
Note: See TracChangeset for help on using the changeset viewer.