django-orchestra-test/orchestra/apps/bills/templates/bills/base.html

11 lines
286 B
HTML
Raw Normal View History

2014-08-20 18:50:07 +00:00
<html>
<head>
2014-08-22 11:28:46 +00:00
<title>{% block title %}{{ bill.get_type_display }} - {{ bill.number }}{% endblock %}</title>
2014-08-20 18:50:07 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>