diff --git a/README.md b/README.md index 3c44f1ae..6313d50a 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Install system dependencies (method depends on OS): ### Python packages Install pip packages: ``` - (venv) $ pip install -r src/requirements.txt + (venv) $ pip install -r src/requirements/dev.txt ``` ### Configuration file diff --git a/src/backoffice/templates/index.html b/src/backoffice/templates/index.html index bc9710cc..c121fe43 100644 --- a/src/backoffice/templates/index.html +++ b/src/backoffice/templates/index.html @@ -34,6 +34,14 @@
Use this view to manage SpeakerProposals and EventProposals
+ +Use this view to look at Merchandise Orders
+ + +Use this view to generate a list of merchandise that needs to be ordered
+ diff --git a/src/backoffice/templates/merchandise_to_order.html b/src/backoffice/templates/merchandise_to_order.html new file mode 100644 index 00000000..bbf6a6b2 --- /dev/null +++ b/src/backoffice/templates/merchandise_to_order.html @@ -0,0 +1,44 @@ +{% extends 'base.html' %} +{% load commonmark %} +{% load static from staticfiles %} +{% load imageutils %} +{% block extra_head %} + + +{% endblock extra_head %} +{% block content %} +Merchandise Type | +Quantity | +
---|---|
{{ key }} | +{{ val }} | +
Order | +User | +OPR Id | +Product | +Quantity | +|
---|---|---|---|---|---|
Order #{{ productrel.order.id }} | +{{ productrel.order.user }} | +{{ productrel.order.user.email }} | +{{ productrel.id }} | +{{ productrel.product.name }} | +{{ productrel.quantity }} | +
The {{ team.name }} Team is responsible for the following tasks
+Name | +Description | +When | +Completed | +Action | +
---|---|---|---|---|
{{ task.name }} | +{{ task.description }} | +
+
|
+ {{ task.completed }} | ++ Details + {% if request.user in team.responsible_members.all %} + Edit Task + {% endif %} + | +