Skip to content

Commit

Permalink
Merge pull request #1428 from CiviWiki/accounts-templates-django-syntax
Browse files Browse the repository at this point in the history
Accounts templates django syntax
  • Loading branch information
brylie authored Oct 21, 2022
2 parents 72da82c + 69bfb98 commit 1d04932
Show file tree
Hide file tree
Showing 51 changed files with 1,025 additions and 4,075 deletions.
7 changes: 0 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,3 @@ repos:
rev: v0.13.1
hooks:
- id: curlylint

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.981
hooks:
- id: mypy
args: [--no-strict-optional, --ignore-missing-imports]

183 changes: 92 additions & 91 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion project/accounts/admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from django.contrib import admin
from .models import User

from .models import Profile, User

# Register your models here.
admin.site.register(Profile)

admin.site.register(User)
Loading

0 comments on commit 1d04932

Please sign in to comment.