templates/_partials/courses/_js_solicitar_curso_no_access.html.twig line 1

Open in your IDE?
  1. <script type="text/javascript">
  2. $(function () {
  3. $(document).on("click", "a.solicitar-curso-no-access", function (event) {
  4. event.preventDefault();
  5. const title = "{{ 'js.title.modal.solicitar_curso_no_access' | trans({}, 'js') }}";
  6. const message = "{{ 'js.message.modal.solicitar_curso_no_access' | trans({'%login%': path('login_request_credentials'), '%register%': path('register_request_information')}, 'js') | raw }}";
  7. AlertUtils.info(title, message, null, AlertUtils.Buttons.simple);
  8. });
  9. });
  10. </script>