-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Facilitate tests and version upgrade (#13)
* misc: properly call version attribute * feat: add template sample to test app (#10) As an example, because there is no theme configured here and this will have no impact in the app. **However**, another change to the project `README` is incoming after this change is merged to include a screenshot with an example of the template provided working with `django-surface-theme`. * Update Django version in pyproject.toml (#12) Signed-off-by: pacuraro <[email protected]> * misc: version bump for new release --------- Signed-off-by: pacuraro <[email protected]> Co-authored-by: pacuraro <[email protected]>
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.1" | ||
__version__ = "0.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{% extends "admin/base.html" %} | ||
|
||
{% block userlinks %} | ||
{{ block.super }} | ||
/ <a href="{% url 'admin:apitokens_mytoken_changelist' %}">API Tokens</a> | ||
{% endblock %} |