[open-ils-commits] r398 - in servres/trunk/conifer: . syrup (gfawcett)
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Apr 26 21:57:57 EDT 2009
Author: gfawcett
Date: 2009-04-26 21:57:56 -0400 (Sun, 26 Apr 2009)
New Revision: 398
Modified:
servres/trunk/conifer/TODO
servres/trunk/conifer/syrup/models.py
Log:
added Y-M-D format cue to Add Term page (to model label, actually).
Modified: servres/trunk/conifer/TODO
===================================================================
--- servres/trunk/conifer/TODO 2009-04-27 00:15:48 UTC (rev 397)
+++ servres/trunk/conifer/TODO 2009-04-27 01:57:56 UTC (rev 398)
@@ -32,24 +32,14 @@
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?)
+> 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!)
-
> 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 @@
> 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.)
+
+
+
+
Modified: servres/trunk/conifer/syrup/models.py
===================================================================
--- servres/trunk/conifer/syrup/models.py 2009-04-27 00:15:48 UTC (rev 397)
+++ servres/trunk/conifer/syrup/models.py 2009-04-27 01:57:56 UTC (rev 398)
@@ -133,8 +133,8 @@
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
More information about the open-ils-commits
mailing list