Skip to content

Commit

Permalink
Implementing #38
Browse files Browse the repository at this point in the history
  • Loading branch information
villanueval committed Dec 21, 2022
1 parent 2df3ded commit 9cad8ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions dashboard/flask/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
html {
position: relative;
min-height: 100%;
padding-bottom:160px;
padding-bottom:20px;
}
body {
margin-bottom: 160px;
Expand Down Expand Up @@ -188,7 +188,6 @@ <h1>Login:</h1>
</div>

<footer class="page-footer font-small bg-secondary pt-2" style="background: #3F4249!important;">
<br>
<!-- Footer Elements -->
<div class="container-fluid">
<div class="row">
Expand Down
6 changes: 6 additions & 0 deletions dashboard/flask/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@ <h5 class="modal-title" id="previewmodal1Label">Image Preview (JPG)</h5>

</div>
</div>
<br>
{% if project_info.project_notice != None %}
<div class="alert alert-info m-100" role="alert">
<small>{{ project_info.project_notice | safe }}</small>
</div>
{% endif %}

{% endblock %}

Expand Down
1 change: 1 addition & 0 deletions database/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ CREATE TABLE projects (
filecheck_link text,
process_summary text DEFAULT null,
qc_status integer DEFAULT 0,
project_notice text,
updated_at timestamp with time zone DEFAULT NOW()
);
CREATE INDEX projects_pid_idx ON projects USING BTREE(project_id);
Expand Down

0 comments on commit 9cad8ef

Please sign in to comment.