fixed tam_pho image size

This commit is contained in:
Phuoc Cao
2026-02-04 16:01:42 +01:00
parent c2c1019d93
commit 5b4f2fa144
4 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 299 KiB

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

View File

@@ -41,8 +41,10 @@
</tbody> </tbody>
</table> </table>
{% else %} {% else %}
{% if items : %}
<p>Aucune entrée trouvée pour : [<span class="text-danger">{{ criteria }}</span>]</p> <p>Aucune entrée trouvée pour : [<span class="text-danger">{{ criteria }}</span>]</p>
{% endif %} {% endif %}
{% endif %}
</div> </div>
<br /> <br />
<br /> <br />

View File

@@ -92,7 +92,6 @@ def settings(request):
sqlalchemy_version = pkg_resources.get_distribution("sqlalchemy").version sqlalchemy_version = pkg_resources.get_distribution("sqlalchemy").version
sqlite_version = sqlite3.sqlite_version sqlite_version = sqlite3.sqlite_version
python_version = sys.version python_version = sys.version
app_version = '1.0' # pkg_resources.require("cao_sunyata")[0].version
return { return {
'page_title': "Paramètres", 'page_title': "Paramètres",
@@ -103,7 +102,6 @@ def settings(request):
'sqlite_version' : sqlite_version, 'sqlite_version' : sqlite_version,
'sqlalchemy_version': sqlalchemy_version, 'sqlalchemy_version': sqlalchemy_version,
'python_version' : python_version, 'python_version' : python_version,
'app_version' : app_version,
} }