added Y-M-D format cue to Add Term page (to model label, actually).
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 27 Apr 2009 01:57:56 +0000 (01:57 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 27 Apr 2009 01:57:56 +0000 (01:57 +0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@398 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/TODO
conifer/syrup/models.py

index 3bd75dd..d371b94 100644 (file)
@@ -32,24 +32,14 @@ MAYBE:
 
 FROM KGS:
 
-> As prof, can't view Renaissance, 2009W -- why is it listed if I
-> can't view it? Can it be marked off in some way to indicate I don't
-> have access?
+> Functions need "cancel" or "go back"
 
 > Course details -- seems a little terse -- but may be what folks use
 
-> Sequencing -- easy! Save -- maybe make a  button?  (where's my narrative?)
-
-> Functions need "cancel" or "go back"
-
-> "Browse the Reserves (Note: some course materials may require you to
-> log in)" -- (But I *am* logged in!)
+> Sequencing -- easy! Save -- maybe make a  button?  [where's my narrative?]
 
 > Notify circulation of wanted items -- FAIL
 
-> Add term: what's the format for adding a date? Can it prompt or have
-> fielded entry?
-
 > Why is staff a member of a course? is that a requirement? (proxy
 > instructor makes more sense).
 
@@ -57,3 +47,18 @@ FROM KGS:
 > a suitably-intimidating warning to encourage catalogue-use wherever
 > possible.
 
+RECENTLY DONE:
+
+> As prof, can't view Renaissance, 2009W -- why is it listed if I
+> can't view it? Can it be marked off in some way to indicate I don't
+> have access?
+
+> "Browse the Reserves (Note: some course materials may require you to
+> log in)" -- (But I *am* logged in!)
+
+> Add term: what's the format for adding a date? Can it prompt or have
+> fielded entry? (just added Y-M-D label for now.)
+
+
+
+
index df55421..79fcef9 100644 (file)
@@ -133,8 +133,8 @@ class ServiceDesk(m.Model):
 class Term(m.Model):
     code   = m.CharField(max_length=16, blank=True, null=True, unique=True)
     name   = m.CharField(max_length=255)
-    start  = m.DateField()
-    finish = m.DateField()
+    start  = m.DateField('Start (Y-M-D)')
+    finish = m.DateField('Finish (Y-M-D)')
 
     def __unicode__(self):
         return self.code or self.name