|
1 | 1 | # Documentation
|
2 | 2 |
|
3 | 3 | Here is the full documentation for the project at the moment. We have divided it into two types: documentation for
|
4 |
| -configuring applications and documentation for development utilities. |
| 4 | +configuration and documentation for development utilities. |
5 | 5 |
|
6 |
| -## Configuring applications |
| 6 | +<details><summary> |
| 7 | + |
| 8 | +## Configuration |
| 9 | +</summary> |
| 10 | + |
| 11 | +This configurations will be divided in application configurations and libraries configurations. |
| 12 | + |
| 13 | +<details><summary> |
| 14 | + |
| 15 | +### Apps |
| 16 | +</summary> |
| 17 | + |
| 18 | +[//]: # (Stats, User, Event, Application, Meals, Review, Messages) |
| 19 | + |
| 20 | +- **[Friends](configuration/friends.md)**: This optional app enables the participants to apply with their friends and then for the organizers to group their applications |
| 21 | +in order to invite all the friends. |
| 22 | + |
| 23 | +</details> |
| 24 | + |
| 25 | +<details><summary> |
| 26 | + |
| 27 | +### Libraries |
| 28 | +</summary> |
| 29 | + |
| 30 | +- **[Admin honeypot](configuration/admin_honeypot.md)**: Fake Django admin login screen to log and notify admins of attempted unauthorized access. |
| 31 | +- **[Allauth](configuration/allauth.md)**: Integrated set of Django applications addressing authentication, registration, account management as well as |
| 32 | +3rd party (social) account authentication. |
| 33 | +- **[Axes](configuration/axes.md)**: Axes is a Django plugin for keeping track of suspicious login attempts for your Django based website and implementing simple brute-force attack blocking. |
| 34 | +- **[Captcha](configuration/captcha.md)**: Django reCAPTCHA form field/widget integration app. |
| 35 | +- **[Colorfield](configuration/colorfield.md)**: Simple color field for your models with a nice color-picker in the admin-interface. |
| 36 | +- **[Compressor](configuration/compressor.md)**: Compresses linked and inline JavaScript or CSS into a single cached file. |
| 37 | +- **[Cors headers](configuration/corsheaders.md)**: A Django App that adds Cross-Origin Resource Sharing (CORS) headers to responses. |
| 38 | +- **[Crontab](configuration/crontab.md)**: Dead simple crontab powered job scheduling for django. |
| 39 | +- **[Django Bootstrap 5](configuration/django_filter.md)**: Bootstrap 5 for Django. |
| 40 | +- **[Django CSP](configuration/django_csp.md)**: Adds Content-Security-Policy headers to Django applications. |
| 41 | +- **[Django filter](configuration/django_filter.md)**: It allows users to filter down a queryset based on a model’s fields, displaying the form to let them do this. |
| 42 | +- **[Django JWT](configuration/django_jwt_oidc.md)**: Django library that implements the authentication for OpenId SSO with JWT from oauth2. |
| 43 | +- **[Django password validator](configuration/django_password_validators.md)**: Additional libraries for validating passwords in Django 2.2.25 or later. |
| 44 | +- **[Django tables 2](configuration/django_tables2.md)**: An app for creating HTML tables. |
| 45 | + |
| 46 | +</details> |
| 47 | +</details> |
| 48 | + |
| 49 | +<details><summary> |
7 | 50 |
|
8 | 51 | ## Development utilities
|
| 52 | +</summary> |
9 | 53 |
|
10 | 54 | This utilities will be divided in generic utilities and app specific utilities.
|
11 | 55 |
|
| 56 | +<details><summary> |
| 57 | + |
12 | 58 | ### Generic
|
| 59 | +</summary> |
| 60 | + |
| 61 | +[//]: # (Email, Utils.py, Nav, Theme, Tables, Singleton, Timezone) |
13 | 62 |
|
14 | 63 | - **[BootstrapFormMixin](utility/bootstrap_form_mixin.md)**: A utility to assist in the rendering of a form using Bootstrap 5.
|
15 | 64 | - **[TabsViewMixin](utility/tabs_view_mixin.md)**: A utility to help the creation of necessary methods for displaying a view with tabs, which will automatically render when used in your views.
|
16 | 65 | - **[PermissionRequiredMixin](utility/permission_required_mixin.md)**: Improvement of the Django PermissionRequiredMixin class. Inherit this if you create new permission mixins please.
|
17 | 66 |
|
| 67 | +</details> |
| 68 | + |
| 69 | +<details><summary> |
18 | 70 |
|
19 | 71 | ### App specific
|
| 72 | +</summary> |
| 73 | + |
| 74 | +#### Application |
| 75 | + |
| 76 | +- **[Application Forms](utility/application_form.md)**: Generic class to create types of applications (Hacker, Mentor, etc.) that integrates automatically the forms with the Application Model. |
| 77 | + |
| 78 | +#### Event.Messages |
| 79 | + |
| 80 | +- **[MessageServiceManager](utility/messages.md)**: Explanation of how this services work and how to use it to send quick messages to the participants. |
| 81 | + |
| 82 | +</details> |
| 83 | + |
| 84 | +</details> |
20 | 85 |
|
21 |
| -- **[Application Forms](utility/application_form.md) [Application App]**: Generic class to create types of applications (Hacker, Mentor, etc.) that integrates automatically the forms with the Application Model. |
22 |
| -- **[MessageServiceManager](utility/messages.md) [Event.Messages App]**: Explanation of how this services work and how to use it to send quick messages to the participants. |
| 86 | +<style> |
| 87 | +details summary > * { |
| 88 | + display: inline; |
| 89 | +} |
| 90 | +details { |
| 91 | + margin-top: 25px; |
| 92 | +} |
| 93 | +</style> |
0 commit comments