diff options
author | mkanat%bugzilla.org <> | 2007-10-24 02:36:51 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-10-24 02:36:51 +0200 |
commit | 16a1c874c190a2726ff8a9e9aadac12a37592023 (patch) | |
tree | 9ea33d5c333ada4c0084a2d0e0871055714a37d4 /template | |
parent | 212433f27ac422f79924d03b5d047236f6cdd308 (diff) | |
download | bugzilla-16a1c874c190a2726ff8a9e9aadac12a37592023.tar.gz bugzilla-16a1c874c190a2726ff8a9e9aadac12a37592023.tar.xz |
Bug 357324: Date/Time Custom Fields
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/field.html.tmpl | 6 | ||||
-rw-r--r-- | template/en/default/global/field-descs.none.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 7 |
3 files changed, 13 insertions, 1 deletions
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl index 7de659742..f79af3541 100644 --- a/template/en/default/bug/field.html.tmpl +++ b/template/en/default/bug/field.html.tmpl @@ -41,7 +41,11 @@ [% IF editable %] [% SWITCH field.type %] [% CASE constants.FIELD_TYPE_FREETEXT %] - <input name="[% field.name FILTER html %]" value="[% value FILTER html %]" size="60"> + <input name="[% field.name FILTER html %]" + value="[% value FILTER html %]" size="60"> + [% CASE constants.FIELD_TYPE_DATETIME %] + <input name="[% field.name FILTER html %]" size="20" + value="[% value FILTER html %]"> [% CASE [ constants.FIELD_TYPE_SINGLE_SELECT constants.FIELD_TYPE_MULTI_SELECT ] %] <select id="[% field.name FILTER html %]" diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl index 64bf546e6..178a68444 100644 --- a/template/en/default/global/field-descs.none.tmpl +++ b/template/en/default/global/field-descs.none.tmpl @@ -83,6 +83,7 @@ ${constants.FIELD_TYPE_SINGLE_SELECT} => "Drop Down", ${constants.FIELD_TYPE_MULTI_SELECT} => "Multiple-Selection Box", ${constants.FIELD_TYPE_TEXTAREA} => "Large Text Box", + ${constants.FIELD_TYPE_DATETIME} => "Date/Time", } %] [% status_descs = { "UNCONFIRMED" => "UNCONFIRMED", diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 77ce40f72..16bc0f7af 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -733,6 +733,13 @@ [% docslinks = {'reporting.html' => 'Reporting'} %] You are not authorized to edit this series. To do this, you must either be its creator, or an administrator. + + [% ELSIF error == "illegal_time" %] + [% title = "Illegal Time" %] + '<tt>[% time FILTER html %]</tt>' is not a legal time. + [% IF format %] + Please use the format '<tt>[% format FILTER html %]</tt>'. + [% END %] [% ELSIF error == "insufficient_data_points" %] [% docslinks = {'reporting.html' => 'Reporting'} %] |