Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
musica_listas_umusic
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cristian Mauricio Diaz Canales
musica_listas_umusic
Commits
2debb25e
Commit
2debb25e
authored
Oct 03, 2019
by
Cristian Mauricio Diaz Canales
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correccion cajita
parent
70d6d274
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
74 deletions
+74
-74
templates/frontend/paginas/resultado.html.twig
templates/frontend/paginas/resultado.html.twig
+74
-74
No files found.
templates/frontend/paginas/resultado.html.twig
View file @
2debb25e
{%
extends
'frontend/base.html.twig'
%}
{%
block
title
%}
Reproductor
{%
endblock
%}
{%
block
stylesheets
%}
<link
href=
"
{{
asset
(
'frontend/css/styles-player.css'
)
}}
"
rel=
"stylesheet"
>
{%
endblock
%}
{%
block
body
%}
<header
class=
"masthead-sc text-white"
>
<div
class=
"masthead-content"
>
<div
class=
"container subheader-info col-10 offset-1 mt-4 mb-3"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<p
class=
"numero-top text-left"
>
{{
lista.getLisNombre
()
}}
</p>
{%
if
error
is
defined
%}
<div
align=
"center"
>
<div
class=
"alert alert-danger"
>
{{
error
}}
</div>
</div>
{%
endif
%}
{%
if
mensaje
is
defined
%}
<div
align=
"center"
>
<div
class=
"alert alert-success"
>
{{
mensaje
}}
</div>
</div>
{%
endif
%}
</div>
{%
if
mostrarKushki
==
1
%}
<div
class=
"col-12"
>
<form
id=
"kushki-pay-form"
action=
"confirm"
method=
"post"
>
<input
type=
"hidden"
name=
"userIdentifier"
value=
"
{{
msisdn
}}
"
>
<input
type=
"hidden"
name=
"productId"
value=
"
{{
lista.getLisId
()
}}
"
>
<input
type=
"hidden"
name=
"productPrice"
value=
"
{{
lista.getLisPrecio
()
}}
"
>
<input
type=
"hidden"
name=
"productName"
value=
"
{{
lista.getLisNombre
()
}}
"
>
</form>
</div>
{%
endif
%}
</div>
</div>
<!-- header con mensaje -->
<form
action=
"
{{
path
(
'front_index'
)
}}
"
>
<div
class=
"container subheader-info col-10 offset-1 mt-4 mb-3"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<button
type=
"submit"
class=
"btn btn-codigo-suscripcion col-11 mt-4 mb-5"
>
Volver
</button>
</div>
</div>
</div>
</form>
</div>
</header>
{%
endblock
%}
{%
block
javascripts
%}
{%
if
mostrarKushki
==
1
%}
<script
src=
"https://cdn.kushkipagos.com/kushki-checkout.js"
></script>
<script
type=
"text/javascript"
>
var
kushki
=
new
KushkiCheckout
({
form
:
"
kushki-pay-form
"
,
merchant_id
:
"
{{
publicMerchantId
}}
"
,
amount
:
"
500.0
"
,
currency
:
"
CLP
"
,
payment_methods
:
[
"
credit-card
"
],
// Payments Methods enabled
is_subscription
:
false
,
// Optional
inTestEnvironment
:
true
,
regional
:
false
// Optional
});
</script>
{%
endif
%}
</script>
{%
endblock
%}
{%
extends
'frontend/base.html.twig'
%}
{%
block
title
%}
Reproductor
{%
endblock
%}
{%
block
stylesheets
%}
<link
href=
"
{{
asset
(
'frontend/css/styles-player.css'
)
}}
"
rel=
"stylesheet"
>
{%
endblock
%}
{%
block
body
%}
<header
class=
"masthead-sc text-white"
>
<div
class=
"masthead-content"
>
<div
class=
"container subheader-info col-10 offset-1 mt-4 mb-3"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<p
class=
"numero-top text-left"
>
{{
lista.getLisNombre
()
}}
</p>
{%
if
error
is
defined
%}
<div
align=
"center"
>
<div
class=
"alert alert-danger"
>
{{
error
}}
</div>
</div>
{%
endif
%}
{%
if
mensaje
is
defined
%}
<div
align=
"center"
>
<div
class=
"alert alert-success"
>
{{
mensaje
}}
</div>
</div>
{%
endif
%}
</div>
{%
if
mostrarKushki
==
1
%}
<div
class=
"col-12"
>
<form
id=
"kushki-pay-form"
action=
"confirm"
method=
"post"
>
<input
type=
"hidden"
name=
"userIdentifier"
value=
"
{{
msisdn
}}
"
>
<input
type=
"hidden"
name=
"productId"
value=
"
{{
lista.getLisId
()
}}
"
>
<input
type=
"hidden"
name=
"productPrice"
value=
"
{{
lista.getLisPrecio
()
}}
"
>
<input
type=
"hidden"
name=
"productName"
value=
"
{{
lista.getLisNombre
()
}}
"
>
</form>
</div>
{%
endif
%}
</div>
</div>
<!-- header con mensaje -->
<form
action=
"
{{
path
(
'front_index'
)
}}
"
>
<div
class=
"container subheader-info col-10 offset-1 mt-4 mb-3"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<button
type=
"submit"
class=
"btn btn-codigo-suscripcion col-11 mt-4 mb-5"
>
Volver
</button>
</div>
</div>
</div>
</form>
</div>
</header>
{%
endblock
%}
{%
block
javascripts
%}
{%
if
mostrarKushki
==
1
%}
<script
src=
"https://cdn.kushkipagos.com/kushki-checkout.js"
></script>
<script
type=
"text/javascript"
>
var
kushki
=
new
KushkiCheckout
({
form
:
"
kushki-pay-form
"
,
merchant_id
:
"
{{
publicMerchantId
}}
"
,
amount
:
"
{{
lista.getLisPrecio
()
}}
.0
"
,
currency
:
"
CLP
"
,
payment_methods
:
[
"
credit-card
"
],
// Payments Methods enabled
is_subscription
:
true
,
// Optional
inTestEnvironment
:
true
,
regional
:
false
// Optional
});
</script>
{%
endif
%}
</script>
{%
endblock
%}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment