diff --git a/djangoshaker/templates/djangoshaker/brand.html b/djangoshaker/templates/djangoshaker/brand.html new file mode 100644 --- /dev/null +++ b/djangoshaker/templates/djangoshaker/brand.html @@ -0,0 +1,23 @@ +{% extends "djangoshaker/template.html" %} + +{% load djangoshaker_html_helpers %} + +{% block title %}Django Shaker - {{brand.name}}{% endblock %} + +{% block header_title %}{{brand.name}}{% endblock %} + +{% block content %} + +{% if brand %} +{% if brand.description %} +

Description

+
{{brand.description|linebreaks}}
+{% endif %} +

Ingredient Type

+ +{% endif %} + +{% endblock %} +