From cea53847dbb1ccb79246f1b20df845bb761e6f5f Mon Sep 17 00:00:00 2001 From: gfawcett Date: Mon, 27 Apr 2009 01:57:56 +0000 Subject: [PATCH] added Y-M-D format cue to Add Term page (to model label, actually). git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@398 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- conifer/TODO | 29 +++++++++++++++++------------ conifer/syrup/models.py | 4 ++-- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/conifer/TODO b/conifer/TODO index 3bd75dd..d371b94 100644 --- a/conifer/TODO +++ b/conifer/TODO @@ -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.) + + + + diff --git a/conifer/syrup/models.py b/conifer/syrup/models.py index df55421..79fcef9 100644 --- a/conifer/syrup/models.py +++ b/conifer/syrup/models.py @@ -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 -- 2.11.0