@extends('layout.default') @section('title', $L('Habit tracking')) @section('activeNav', 'habittracking') @section('viewJsName', 'habittracking') @section('content')

@yield('title')

{{ $L('You have to select a habit') }}
@include('components.datetimepicker', array( 'id' => 'tracked_time', 'label' => 'Tracked time', 'format' => 'YYYY-MM-DD HH:mm:ss', 'initWithNow' => true, 'limitEndToNow' => true, 'limitStartToNow' => false, 'invalidFeedback' => $L('This can only be before now') ))
@include('components.habitcard')
@stop