Skip to content

Commit

Permalink
removed templates functionality, because another tool is now responsi…
Browse files Browse the repository at this point in the history
…ble for that. template functions need to be removed entirely in future updates
  • Loading branch information
Zerskk committed Jul 26, 2024
1 parent 2d5cccc commit d81ade0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
api_router.include_router(status.router, prefix="/status", tags=["Status"])
api_router.include_router(webhooks.router, prefix="/webhook", tags=["Webhooks"])
api_router.include_router(ontologies.router, prefix="/ontology", tags=["Ontologies"])
api_router.include_router(templates.router, prefix="/template", tags=["Templates"])
# api_router.include_router(templates.router, prefix="/template", tags=["Templates"])
api_router.include_router(database.router, prefix="/database", tags=["Database"])
api_router.include_router(notifications.router, prefix="/notification", tags=["Notifications"])
# api_router.include_router(search.router, prefix="/search", tags=["Search"])
Expand Down
22 changes: 11 additions & 11 deletions app/html/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,20 +205,20 @@ <h3 style="color:white; padding-top:1.9em">
</div>
</div>

<div class="status-view">
<div class="description">Templates</div>
<!-- <div class="status-view">-->
<!-- <div class="description">Templates</div>-->

<div class="buttons">
<!-- <div class="buttons">-->

<div class="control">
<div class="tags has-addons">
<span class="tag is-info is-medium"
id="number_templates">Loading</span>
</div>
</div>
<!-- <div class="control">-->
<!-- <div class="tags has-addons">-->
<!-- <span class="tag is-info is-medium"-->
<!-- id="number_templates">Loading</span>-->
<!-- </div>-->
<!-- </div>-->

</div>
</div>
<!-- </div>-->
<!-- </div>-->


</div>
Expand Down

0 comments on commit d81ade0

Please sign in to comment.