19 lines
376 B
Python
19 lines
376 B
Python
|
from django.template.loader import render_to_string
|
||
|
|
||
|
from myapi.models import Film
|
||
|
|
||
|
prices = {
|
||
|
'one_cof': 4,
|
||
|
'one_exte': 5,
|
||
|
'card_cof': 30,
|
||
|
'card_exte': 35
|
||
|
}
|
||
|
|
||
|
|
||
|
def render_com(template_name, film: Film) -> str:
|
||
|
return render_to_string(template_name, {"film": film, "prices": prices})
|
||
|
|
||
|
|
||
|
def bocal(film: Film) -> str:
|
||
|
return render_com('bocal.tex', film)
|