field-after.html 471 B

1234567891011121314151617181920
  1. <script id="tmpl-nf-field-after" type="text/template">
  2. <#
  3. /*
  4. * Render our input limit section if that setting exists.
  5. */
  6. #>
  7. <div class="nf-input-limit"></div>
  8. <#
  9. /*
  10. * Render our error section if we have an error.
  11. */
  12. #>
  13. <div id="nf-error-{{{ data.id }}}" class="nf-error-wrap nf-error" role="alert"></div>
  14. <#
  15. /*
  16. * Render any custom HTML after our field.
  17. */
  18. #>
  19. {{{ data.afterField }}}
  20. </script>