Browse Source

DIV-1041: Clean up poc menus and update readme.

pull/170/head
Steven Ly 5 years ago
parent
commit
24e889b870
6 changed files with 24 additions and 4 deletions
  1. +1
    -0
      .gitignore
  2. +5
    -1
      README.md
  3. +15
    -0
      edivorce/apps/poc/templates/poc-sidebar.html
  4. +1
    -1
      edivorce/apps/poc/templates/poc/document_confirm_delete.html
  5. +1
    -1
      edivorce/apps/poc/templates/scan.html
  6. +1
    -1
      edivorce/apps/poc/templates/storage.html

+ 1
- 0
.gitignore View File

@ -32,6 +32,7 @@ var/
.installed.cfg
*.egg
.python-version
Pipfile
# PyInstaller
# Usually these files are written by a python script from a template


+ 5
- 1
README.md View File

@ -50,7 +50,11 @@ To run this project in your development machine, follow these steps:
docker run -d -p 5005:5001 aquavitae/weasyprint
```
9. Open your browser and go to http://127.0.0.1:8000, you will be greeted with the eDivorce homepage. In dev mode, you can log in with any username and the password 'divorce'.
9. Start up docker containers:
`docker-compose up -d`
10. Open your browser and go to http://127.0.0.1:8000, you will be greeted with the eDivorce homepage. In dev mode, you can log in with any username and the password 'divorce'.
### SCSS Compilation


+ 15
- 0
edivorce/apps/poc/templates/poc-sidebar.html View File

@ -0,0 +1,15 @@
{% load step_order %}
{% load load_json %}
<div class="col-flex progress-column">
<h4>POC</h4>
<a href="{% url 'poc-scan' %}" class="progress-question">
<span class="progress-icon"><i class="fa fa-share-alt" aria-hidden="true"></i></span>
<span class="progress-content">File Scanning</span>
</a>
<a href="{% url 'poc-storage' %}" class="progress-question">
<span class="progress-icon"><i class="fa fa-info" aria-hidden="true"></i></span>
<span class="progress-content">Redis Storage</span>
</a>
</div>

+ 1
- 1
edivorce/apps/poc/templates/poc/document_confirm_delete.html View File

@ -5,7 +5,7 @@
{% block title %}{{ block.super }}: POC{% endblock %}
{% block progress %}{% include "partials/progress.html" %}{% endblock %}
{% block progress %}{% include "poc-sidebar.html" %}{% endblock %}
{% block content %}
<form method="post">{% csrf_token %}


+ 1
- 1
edivorce/apps/poc/templates/scan.html View File

@ -5,7 +5,7 @@
{% block title %}{{ block.super }}: POC{% endblock %}
{% block progress %}{% include "partials/progress.html" %}{% endblock %}
{% block progress %}{% include "poc-sidebar.html" %}{% endblock %}
{% block content %}
<h1><small>Proof of Concept:</small>File scanning</h1>


+ 1
- 1
edivorce/apps/poc/templates/storage.html View File

@ -5,7 +5,7 @@
{% block title %}{{ block.super }}: POC{% endblock %}
{% block progress %}{% include "partials/progress.html" %}{% endblock %}
{% block progress %}{% include "poc-sidebar.html" %}{% endblock %}
{% block content %}
<h1><small>Proof of Concept:</small>File storage</h1>


Loading…
Cancel
Save