Extending projects and events

This commit is contained in:
Dennis Eichhorn 2017-02-12 16:17:45 +01:00
parent 208a7470d0
commit c109b54bb2
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td><input type="datetime-local" id="iStart" name="start" value="<?= $project->getStart()->format('Y-m-d\TH:i:s'); ?>">
<td><input type="datetime-local" id="iEnd" name="end" value="<?= $project->getEnd()->format('Y-m-d\TH:i:s'); ?>">
<tr><td colspan="2"><label for="iDescription"><?= $this->getText('Description'); ?></label>
<tr><td colspan="2"><textarea id="iDescription" name="desc" value="<?= $project->getDescription(); ?>"></textarea>
<tr><td colspan="2"><textarea id="iDescription" name="desc"><?= $project->getDescription(); ?></textarea>
<tr><td colspan="2"><input type="submit" value="<?= $this->getText('Save', 0, 0); ?>">
</table>
</form>

View File

@ -33,7 +33,7 @@ echo $this->getData('nav')->render(); ?>
<tr><td><input type="datetime-local" id="iStart" name="start" value="<?= $project->getStart()->format('Y-m-d\TH:i:s'); ?>">
<td><input type="datetime-local" id="iEnd" name="end" value="<?= $project->getEnd()->format('Y-m-d\TH:i:s'); ?>">
<tr><td colspan="2"><label for="iDescription"><?= $this->getText('Description'); ?></label>
<tr><td colspan="2"><textarea id="iDescription" name="desc" value="<?= $project->getDescription(); ?>"></textarea>
<tr><td colspan="2"><textarea id="iDescription" name="desc"><?= $project->getDescription(); ?></textarea>
<tr><td colspan="2"><input type="submit" value="<?= $this->getText('Save', 0, 0); ?>">
</table>
</form>