We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed that the Quantity fields in templates/iso_collection_default.html5 don't have labels
They should probably look something like this:
<td class="col_<?= $i++ ?> quantity"> <?php if($this->isEditable): ?> <label for="quantity[<?= $item['id'] ?>]">Quantity</label> <input name="quantity[<?= $item['id'] ?>]" id="quantity[<?= $item['id'] ?>]" type="text" class="text" value="<?= $item['quantity'] ?>" maxlength="10"> <?php else: ?> <?= $item['quantity'] ?> x <?php endif; ?> </td>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Noticed that the Quantity fields in templates/iso_collection_default.html5 don't have labels
They should probably look something like this:
The text was updated successfully, but these errors were encountered: