added website pages for orders, tickets and added sales invoice print format

This commit is contained in:
Rushabh Mehta
2013-03-21 17:12:25 +05:30
parent a75efa76f9
commit bed19ac4d3
24 changed files with 490 additions and 174 deletions

View File

@@ -1,20 +1,20 @@
{% extends "html/outer.html" %}
{% block title %}{{ title }}{% endblock %}
{% block title -%}{{ title }}{%- endblock %}
{% block header %}
{% block header -%}
{{ super() }}
<script>
{% block javascript %}
{% endblock %}
{% block javascript -%}
{%- endblock %}
</script>
{% block css %}
{% if insert_style %}
{% block css -%}
{% if insert_style -%}
<style>{{ css }}</style>
{% endif %}
{% endblock %}
{% endblock %}
{%- endif %}
{%- endblock %}
{%- endblock -%}
{% block content %}
{%- block content -%}
{{ content }}
{% endblock %}
{%- endblock %}