initial commit
This commit is contained in:
13
project_name/ext/webui/templates/product.html
Normal file
13
project_name/ext/webui/templates/product.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% extends "index.html" %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h1>{{ product.name }}</h1>
|
||||
|
||||
<div class="jumbotron">
|
||||
<h2>R$ {{ "%0.2f" | format(product.price)}}</h2>
|
||||
<p>
|
||||
{{product.description}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user