initial release

This commit is contained in:
Chris Smith
2025-02-19 22:41:18 +01:00
parent 61e85ae9a2
commit 9e9e989830
15 changed files with 96 additions and 59 deletions

View File

@@ -48,13 +48,9 @@ $this->beginPage() ?>
'label' => 'Capture Meal',
'url' => [Url::to(['meal/upload'])],
];
$menuItems[] = [
'label' => 'List Meals',
'url' => [Url::to(['meal/index'])],
];
$menuItems[] = [
'label' => 'Summary',
'url' => [Url::to(['summary'])],
'url' => [Url::to(['meal/index'])],
];
}

View File

@@ -25,19 +25,15 @@ $this->params['breadcrumbs'][] = $this->title;
'dataProvider' => $dataProvider,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'id',
'file_name',
'food_name',
'calories',
'protein',
'fat',
//'carbohydrates',
//'fiber',
//'meal',
//'created_at',
//'updated_at',
'carbohydrates',
'fiber',
'created_at:datetime',
[
'class' => ActionColumn::className(),
'class' => ActionColumn::class,
'urlCreator' => function ($action, Meal $model, $key, $index, $column) {
return Url::toRoute([$action, 'id' => $model->id]);
}

View File

@@ -51,7 +51,7 @@ $this->registerJS("
<?= $form->field($model, 'picture')
->fileInput([
'class' => 'form-control',
//'capture' => 'environment',
'capture' => 'environment',
]); ?>
</div>
<div class="form-group">

View File

@@ -16,7 +16,7 @@ $this->title = 'Calorie Thingy';
<p class="fs-5 fw-light">Track your food with a picture!</p>
<p>
<a class="btn btn-lg btn-success" href="<?= Yii::$app->getUrlManager()->createUrl(['meal/upload']) ?>">Capture a meal</a>
<a class="btn btn-lg btn-primary" href="<?= Yii::$app->getUrlManager()->createUrl(['summary']) ?>">View Summary</a></p>
<a class="btn btn-lg btn-primary" href="<?= Yii::$app->getUrlManager()->createUrl(['meal/index']) ?>">View Summary</a></p>
</div>
</div>
<div class="body-content">

View File

@@ -41,8 +41,6 @@ $this->params['breadcrumbs'][] = $this->title;
<div class="my-1 mx-0" style="color:#999;">
If you forgot your password you can <?= Html::a('reset it', ['site/request-password-reset']) ?>.
<br>
Need new verification email? <?= Html::a('Resend', ['site/resend-verification-email']) ?>
</div>
<div class="form-group">