diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-24 05:03:52 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-24 05:03:52 +0000 |
| commit | 39f00707ac64558c882fb3df30adb666049b6295 (patch) | |
| tree | 82f4dbf2a4be89c13139bcb91467868d448bb5f3 /core/views | |
| parent | e85282b709708c2be6ec5eb70ba5942167ff583b (diff) | |
Add the creation of tags to the scaffolding code
Diffstat (limited to 'core/views')
| -rw-r--r-- | core/views/welcome.html.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/core/views/welcome.html.php b/core/views/welcome.html.php index f98ab167..154df8ce 100644 --- a/core/views/welcome.html.php +++ b/core/views/welcome.html.php @@ -182,17 +182,24 @@ <p> add: [ <? foreach (array(1, 10, 50, 100, 500, 1000) as $count): ?> - <?= html::anchor("welcome/add_albums_and_photos/$count", "$count") ?> + <?= html::anchor("welcome/add_albums_and_photos/$count", "$count") ?> <? endforeach ?> ] photos and albums </p> <p> add: [ <? foreach (array(1, 10, 50, 100, 500, 1000) as $count): ?> - <?= html::anchor("welcome/add_comments/$count", "$count") ?> + <?= html::anchor("welcome/add_comments/$count", "$count") ?> <? endforeach ?> ] comments </p> + <p> + add: [ + <? foreach (array(1, 10, 50, 100, 500, 1000) as $count): ?> + <?= html::anchor("welcome/add_tags/$count", "$count") ?> + <? endforeach ?> + ] tags + </p> <fieldset> <legend>Photos</legend> <form method="post" action="<?= url::site("albums/1") ?>" enctype="multipart/form-data"> |
