{"id":26502724,"url":"https://github.com/wilspi/django-templatestore","last_synced_at":"2026-03-17T21:34:52.739Z","repository":{"id":39127283,"uuid":"234876315","full_name":"wilspi/django-templatestore","owner":"wilspi","description":"template editor and storage tool","archived":false,"fork":false,"pushed_at":"2024-06-18T09:03:29.000Z","size":24845,"stargazers_count":9,"open_issues_count":16,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-01-02T10:56:12.154Z","etag":null,"topics":["django","django2","handlebars","jinja2","python","react","template"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wilspi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-19T09:50:29.000Z","updated_at":"2024-02-09T06:36:43.000Z","dependencies_parsed_at":"2024-01-09T02:12:55.013Z","dependency_job_id":"1c389161-d600-471d-b171-7835fee6d628","html_url":"https://github.com/wilspi/django-templatestore","commit_stats":{"total_commits":232,"total_committers":8,"mean_commits":29.0,"dds":0.6379310344827587,"last_synced_commit":"1c255ec408b209014039cc5d7907766d0c6475f3"},"previous_names":["wilspi/django-template-editor"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/wilspi/django-templatestore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilspi%2Fdjango-templatestore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilspi%2Fdjango-templatestore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilspi%2Fdjango-templatestore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilspi%2Fdjango-templatestore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wilspi","download_url":"https://codeload.github.com/wilspi/django-templatestore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wilspi%2Fdjango-templatestore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30632015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django2","handlebars","jinja2","python","react","template"],"created_at":"2025-03-20T18:24:11.083Z","updated_at":"2026-03-17T21:34:52.675Z","avatar_url":"https://github.com/wilspi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-templatestore\n![Python application](https://github.com/wilspi/django-templatestore/workflows/Python%20application/badge.svg?branch=master)     \n\n`django-templatestore` is a [Django](https://www.djangoproject.com/) application/ UI tool to edit and save your templates. \n\n### Quick start\nFollow steps to quickly add `django-templatestore` to your existing django application:  \n1. Install [`django-templatestore`](https://pypi.org/project/django-templatestore/0.1/)\n    ```\n    pip install django-templatestore\n    ```\n2. Add `templatestore` to your `INSTALLED_APPS` in `settings.py`:\n    ```\n    INSTALLED_APPS = [\n        ...\n        'templatestore',\n    ]\n    ```\n3. Include the `templatestore` URLconf in your project's `urls.py`:\n    ```\n    path('templatestore/', include('templatestore.urls')),\n    ```\n4. Run `python manage.py collectstatic` to collect the static files into root static folder.\n5. Run `python manage.py migrate` to create the `templatestore` models.\n6. Start the development server and visit `http://127.0.0.1:8000/templatestore/`\n   to start editing templates.\n\n\n### Changelog\n[Here](https://github.com/wilspi/django-templatestore/releases)\n\n\n### Templating Library Support\nCurrently following templating libraries are supported:\n - [x] [`jinja2`](https://www.palletsprojects.com/p/jinja/)\n - [ ] [`handlebarsjs`](https://handlebarsjs.com/guide/)\n\n\n### Development\n* #### Setup\n\n  * Install `nix`  \n    Follow steps [here](https://gist.github.com/wilspi/aad81f832d030d80fca91dfa264a1f8a), if not done already\n  * Run\n    ```\n    nix-shell --pure shell.nix\n    ```\n    * `shell.nix` is tested on `Arch Linux`, `Ubuntu`, `Macos`   \n    Failing to run: please raise issue [here](/issues) :)\n\n* #### Update requirements\n  * `python`\n    ```\n    pip install -r requirements.txt # python\n    ```\n  * `node`\n    ```\n    cd templatestore/frontend/ \u0026\u0026 npm install \u0026\u0026 cd - # node packages\n    ```\n\n* #### Run\n  * Migrate database\n    ```\n    python manage.py migrate\n    ```\n  * Build js and collect static files\n    ```\n    cd templatestore/frontend/ \u0026\u0026 npm run build \u0026\u0026 cd - \u0026\u0026 python manage.py collectstatic --noinput\n    ```\n  * Run application\n    ```\n    python manage.py runserver\n    ```\n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilspi%2Fdjango-templatestore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilspi%2Fdjango-templatestore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilspi%2Fdjango-templatestore/lists"}