generated from yunojuno/poetry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
789257a
commit 4b3baa5
Showing
6 changed files
with
164 additions
and
156 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
**DEMO PURPOSES ONLY** | ||
## Model field anonymisation | ||
App | Model | Field | Type | Anonymise | Redact | ||
--- | --- | --- | --- | --- | ---{% for model,fields in model_fields.items %}{% for field in fields %} | ||
{{ field.app }} | {{ field.model }} | {{ field.field_name }} | {{ field.field_type }} | {{ field.is_anonymised|default:"-" }} | {{ field.redaction_strategy|default:"-"|upper }}{% endfor %}{% endfor %} | ||
--- | --- | --- | --- | --- | ---{% for model,fields in model_fields.items %}{% for field in fields %} | ||
{{ field.app_name }} | {{ field.model_name }} | {{ field.field_name }} | {{ field.field_type }} | {{ field.is_anonymised|default:"-" }} | {{ field.redaction_strategy|default:"-"|upper }}{% endfor %}{% endfor %} |
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,48 +1,48 @@ | ||
**DEMO PURPOSES ONLY** | ||
## Model field anonymisation | ||
App | Model | Field | Type | Anonymise | Redact | ||
--- | --- | --- | --- | --- | --- | ||
admin | LogEntry | id | AutoField | - | - | ||
admin | LogEntry | object_repr | CharField | - | - | ||
admin | LogEntry | action_time | DateTimeField | - | - | ||
admin | LogEntry | content_type | ForeignKey | - | - | ||
admin | LogEntry | user | ForeignKey | - | - | ||
admin | LogEntry | action_flag | PositiveSmallIntegerField | - | - | ||
admin | LogEntry | change_message | TextField | - | - | ||
admin | LogEntry | object_id | TextField | - | - | ||
auth | Group | id | AutoField | - | - | ||
auth | Group | name | CharField | - | - | ||
auth | Group | permissions | ManyToManyField | - | - | ||
auth | Group | user | ManyToManyRel | - | - | ||
auth | Permission | id | AutoField | - | - | ||
auth | Permission | codename | CharField | - | - | ||
auth | Permission | name | CharField | - | - | ||
auth | Permission | content_type | ForeignKey | - | - | ||
auth | Permission | group | ManyToManyRel | - | - | ||
auth | Permission | user | ManyToManyRel | - | - | ||
contenttypes | ContentType | id | AutoField | - | - | ||
contenttypes | ContentType | app_label | CharField | - | - | ||
contenttypes | ContentType | model | CharField | - | - | ||
contenttypes | ContentType | logentry | ManyToOneRel | - | - | ||
contenttypes | ContentType | permission | ManyToOneRel | - | - | ||
sessions | Session | session_key | CharField | - | - | ||
sessions | Session | expire_date | DateTimeField | - | - | ||
sessions | Session | session_data | TextField | - | - | ||
tests | User | id | AutoField | - | - | ||
tests | User | is_active | BooleanField | - | - | ||
tests | User | is_staff | BooleanField | - | - | ||
tests | User | is_superuser | BooleanField | - | - | ||
tests | User | first_name | CharField | True | CUSTOM | ||
tests | User | last_name | CharField | - | AUTO | ||
tests | User | location | CharField | - | AUTO | ||
tests | User | password | CharField | - | AUTO | ||
tests | User | username | CharField | - | - | ||
tests | User | date_of_birth | DateField | - | - | ||
tests | User | date_joined | DateTimeField | - | - | ||
tests | User | last_login | DateTimeField | - | - | ||
tests | User | email | EmailField | - | AUTO | ||
tests | User | groups | ManyToManyField | - | - | ||
tests | User | user_permissions | ManyToManyField | - | - | ||
tests | User | logentry | ManyToOneRel | - | - | ||
tests | User | biography | TextField | - | AUTO | ||
tests | User | uuid | UUIDField | - | - | ||
--- | --- | --- | --- | --- | --- | ||
admin | logentry | id | AutoField | - | - | ||
admin | logentry | object_repr | CharField | - | - | ||
admin | logentry | action_time | DateTimeField | - | - | ||
admin | logentry | content_type | ForeignKey | - | - | ||
admin | logentry | user | ForeignKey | - | - | ||
admin | logentry | action_flag | PositiveSmallIntegerField | - | - | ||
admin | logentry | change_message | TextField | - | - | ||
admin | logentry | object_id | TextField | - | - | ||
auth | group | id | AutoField | - | - | ||
auth | group | name | CharField | - | - | ||
auth | group | permissions | ManyToManyField | - | - | ||
auth | group | user | ManyToManyRel | - | - | ||
auth | permission | id | AutoField | - | - | ||
auth | permission | codename | CharField | - | - | ||
auth | permission | name | CharField | - | - | ||
auth | permission | content_type | ForeignKey | - | - | ||
auth | permission | group | ManyToManyRel | - | - | ||
auth | permission | user | ManyToManyRel | - | - | ||
contenttypes | contenttype | id | AutoField | - | - | ||
contenttypes | contenttype | app_label | CharField | - | - | ||
contenttypes | contenttype | model | CharField | - | - | ||
contenttypes | contenttype | logentry | ManyToOneRel | - | - | ||
contenttypes | contenttype | permission | ManyToOneRel | - | - | ||
sessions | session | session_key | CharField | - | - | ||
sessions | session | expire_date | DateTimeField | - | - | ||
sessions | session | session_data | TextField | - | - | ||
tests | user | id | AutoField | - | - | ||
tests | user | is_active | BooleanField | - | - | ||
tests | user | is_staff | BooleanField | - | - | ||
tests | user | is_superuser | BooleanField | - | - | ||
tests | user | first_name | CharField | True | CUSTOM | ||
tests | user | last_name | CharField | - | AUTO | ||
tests | user | location | CharField | - | AUTO | ||
tests | user | password | CharField | - | AUTO | ||
tests | user | username | CharField | - | - | ||
tests | user | date_of_birth | DateField | - | - | ||
tests | user | date_joined | DateTimeField | - | - | ||
tests | user | last_login | DateTimeField | - | - | ||
tests | user | email | EmailField | - | AUTO | ||
tests | user | groups | ManyToManyField | - | - | ||
tests | user | user_permissions | ManyToManyField | - | - | ||
tests | user | logentry | ManyToOneRel | - | - | ||
tests | user | biography | TextField | - | AUTO | ||
tests | user | uuid | UUIDField | - | - |
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
Oops, something went wrong.