Fix some bugs (closes #8)
This commit is contained in:
parent
7f8c18dbbe
commit
b9a1a62a81
3 changed files with 4 additions and 5 deletions
|
@ -28,7 +28,7 @@
|
|||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-push-1 col-md-4 darker">
|
||||
<h3>Orders</h3>
|
||||
<h3>Items</h3>
|
||||
{% for item in order.items %}
|
||||
{{ item.get_name() }} - {{ item.product.name }} - {{ item.product.price|euro }}
|
||||
{% if item.can_delete(order.id, current_user.id, session.get('anon_name', '')) -%}<a href="{{ url_for('.delete_item', order_id=order.id, item_id=item.id) }}"><span class="glyphicon glyphicon-remove"></span></a>{%- endif %}<br/>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<b>Orders:</b> {{ order.items.count() }}</p>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<a class="btn btn-primary align-bottom full-width" href="{{ url_for('order_bp.order', id=order.id) }}">Open</a>
|
||||
<a class="btn btn-primary align-bottom full-width" href="{{ url_for('order_bp.order', id=order.id) }}">Expand</a>
|
||||
</div>
|
||||
</div>
|
||||
{%- endmacro %}
|
|
@ -23,7 +23,6 @@ zeus = oauth.remote_app(
|
|||
|
||||
|
||||
def zeus_login():
|
||||
if app.debug:
|
||||
return zeus.authorize(callback=url_for('authorized', _external=True))
|
||||
|
||||
|
||||
|
@ -50,7 +49,7 @@ def authorized():
|
|||
return login_and_redirect_user(user)
|
||||
|
||||
flash("You're not allowed to enter, please contact a system administrator")
|
||||
return redirect(url_for("admin.index"))
|
||||
return redirect(url_for("home"))
|
||||
|
||||
|
||||
@zeus.tokengetter
|
||||
|
|
Loading…
Reference in a new issue