diff --git a/.dockerignore b/.dockerignore index f0c0de9..3dbb5fb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -18,5 +18,6 @@ db-container .dockerignore Dockerfile internal/git-log.txt +internal/build-date.txt internal/TODO internal/BUGs diff --git a/.gitignore b/.gitignore index c302072..536f37b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,11 @@ photos/ storage/ images_to_process/ DB_BACKUP/ -internal/git-log.txt internal/upstream +internal/git-log.txt +internal/build-date.txt +internal/TODO +internal/BUGs static/ .pa_metadata/ .python/ diff --git a/TODO b/TODO index 617fe7e..4193f98 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -## GENERAL +### GENERAL * after move, instead of back to home page, go to an ammended view of the thumbs to keep moving * ignore face should ignore ALL matching faces (re: Declan) @@ -77,7 +77,7 @@ * real first-run, 'no or empty settings' -- need to think this through -## DB +### DB * Dir can have date in the DB, so we can do Oldest/Newest dirs in Folder view ### BACKEND diff --git a/main.py b/main.py index a710133..425ea76 100644 --- a/main.py +++ b/main.py @@ -178,7 +178,6 @@ def about(): with open( 'internal/BUGs', 'r' ) as fp: can_add=False for l in fp: - print(l) if not l.startswith( 'BUG' ): if can_add: b['str']=b['str']+'
'+l diff --git a/templates/about.html b/templates/about.html index dd1fd5a..3bbd1d5 100644 --- a/templates/about.html +++ b/templates/about.html @@ -10,27 +10,31 @@ {{build_info}} -
- Recent commits: -
- {% for c in commits %} -
-
{{c.date}}
-
{{c.str}}
-
- {% endfor %} -
- Known Bugs: -
- {% for b in bugs %} -
{{b.str|safe}}
- {% endfor %} -
- TODO: -
-
-    {{todo}}
-    
+ + {% endblock main_content %}