This plugin adds a "Datetime" custom field type to Redmine.
- Allows input and display of datetime values (date + time, e.g.
2025-12-04 09:30) in custom fields - Uses the browser's native datetime picker for user-friendly input (via
<input type="datetime-local">) - Display formatted according to Redmine settings
- Clone this repository to your Redmine plugins directory.
cd YOUR_REDMINE_DIRECTORY/plugins git clone https://github.com/sk-ys/redmine_datetime_cf.git - Restart Redmine.
- Download zip file from the release page or the latest main repository.
- Extract the ZIP file to your Redmine plugin directory. The name of the unzipped directory must be
redmine_datetime_cf. - Restart Redmine.
- Go to Administration > Custom fields and create a new field
- Select "Datetime" as the field format
- Use the field in issues, projects, etc.
- Values are stored in the database in the
YYYY-MM-DDTHH:MMformat. - If Redmine's
Setting.date_formatandSetting.time_formatare set, those formats are used for display - Tested with Redmine 5.1 and 6.1
You can run the plugin's tests with:
bundle exec rake redmine:plugins:test name=redmine_datetime_cf
This plugin is licensed under the GNU GENERAL PUBLIC LICENSE Version 2. See the LICENSE file for details.