Images you have uploaded';
if (count($images) == 0) {
echo '
You have uploaded no images yet.
';
} else {
echo 'Preview | Files |
';
foreach ($images as $img) {
$min = $baseurl . $img['id'] . "-min." . $img['extension'];
$imgf = $baseurl . $img['id'] . "." . $img['extension'];
echo '![](' . $min . ') | ';
echo 'Miniature: ' . $min . ' ';
echo 'Image: ' . $imgf . '';
if ($can_delete) echo ' Delete this image';
echo ' | ';
}
echo '
';
}
if ($can_upload) {
?>
Upload an image