Skip to content

Commit 795a06a

Browse files
committed
Django Section - Update Links
1 parent d3a5254 commit 795a06a

23 files changed

+46
-80
lines changed

docs/technologies/django/01-getting-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,6 +606,6 @@ By the end of this tutorial, you should have a good understanding of several imp
606606
## ✅ Resources
607607

608608
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
609-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
610-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
609+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
610+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
611611
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/01-releases.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,9 @@ BugFixes:
168168

169169
This list covers the major releases of Django from the latest to the earliest versions.
170170

171-
<br />
172-
173171
## ✅ Resources
174172

175173
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
176-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
177-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
174+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
175+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
178176
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/apps.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ The product is designed to deliver the best possible user experience with highly
100100
## ✅ Resources
101101

102102
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
103-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
104-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
103+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
104+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
105105
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/async-vs-celery.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,9 @@ async def async_view(request):
113113
Choose the tool that best fits your project's requirements. If you need a robust task queue system for various tasks and background processing, **Celery** is a better choice.
114114
If you want to optimize **Django** views with asynchronous I/O operations, then Django Async is a suitable option.
115115

116-
<br />
117-
118116
## ✅ Resources
119117

120118
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
121-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
122-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
119+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
120+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
123121
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/backup-restore.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ Restoring the database from backup files can be done by executing the command be
137137

138138
After running the command above, your database would be restored to the state of the last backup made using `django-dbbackup`
139139

140-
<br />
141-
142140
## ✅ Conclusion
143141

144142
In conclusion, mastering the art of managing backups and database restores in Django is an essential skill for any Django developer.
@@ -147,11 +145,9 @@ By understanding the importance of backing up your Django database and learning
147145
By applying the knowledge gained from this tutorial, you now possess the necessary skills to effectively manage backups and database restores in Django.
148146
Remember to consistently back up your database to safeguard your valuable information and be prepared for any unforeseen events.
149147

150-
<br />
151-
152148
## ✅ Resources
153149

154150
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
155-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
156-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
151+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
152+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
157153
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/charts-plotly.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,6 @@ def index(request):
604604
From your browser, visit `http://127.0.0.1:8000/` to see the charts created using Plotly.
605605
To further style them, check out [ploty official documentation](https://plotly.com/python-api-reference/generated/plotly.graph_objects.Figure.html)
606606

607-
<br />
608-
609607
## ✅ Conclusion
610608

611609
So far we have learned how to create a Django project, integrate an existing Django theme with our project, and create a bar chart, line chart and pie chart using Plotly in Django.
@@ -614,11 +612,9 @@ Plotly is a powerful visualization tool and can be used with Django to create a
614612
By following this tutorial, you should now have a good understanding of how to use Django and Plotly to build a data-driven web application that displays information in an interactive chart.
615613
You can use this knowledge to build your web applications and customize the chart to fit your specific use case.
616614

617-
<br />
618-
619615
## ✅ Resources
620616

621617
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
622-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
623-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
618+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
619+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
624620
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/charts-simple.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,6 @@ The pie chart contains lesser configuration because a lot of the details added b
484484

485485
We have added charts to our Django application, but there's a lot more configuration that can be added to our charts to change their look and feel, and also make them blend perfectly with our application. [`Chart.js`](https://www.chartjs.org/docs/latest/configuration/) contains detailed documentation on how to configure charts.
486486

487-
<br />
488-
489487
## ✅ Conclusion
490488

491489
In this tutorial, we've explored how to use Django and Chart.js together to build a web application that displays data in an interactive chart.
@@ -494,11 +492,9 @@ We started by setting up a new Django project and app, creating a model to store
494492
By following this tutorial, you should now have a good understanding of how to use Django and Chart.js to build a data-driven web application that displays information in an interactive chart.
495493
You can use this knowledge to build your web applications and customize the chart to fit your specific use case.
496494

497-
<br />
498-
499495
## ✅ Resources
500496

501497
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
502-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
503-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
498+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
499+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
504500
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/charts-via-api.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -678,11 +678,9 @@ We also added user interactivity to the chart by allowing the user to filter dat
678678

679679
Overall, this tutorial demonstrates how Django, Django API generator and Chart.js can be used together to build powerful and interactive web applications.
680680

681-
<br />
682-
683681
## ✅ Resources
684682

685683
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
686-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
687-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
684+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
685+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
688686
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/custom-commands.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,6 @@ Writing custom commands in our Django projects might help us extract stats, exec
221221
## ✅ Resources
222222

223223
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
224-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
225-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
224+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
225+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
226226
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

docs/technologies/django/docker-auto-reload.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,9 @@ This configuration maps the files inside the Docker container, located at `/app`
101101
That concludes the explanation of how to use the auto-reload feature with Docker.
102102
Now you can make changes to your Django code, and the server will automatically reload, providing a seamless development experience.
103103

104-
<br />
105-
106104
## ✅ Resources
107105

108106
- 👉 Access [AppSeed](https://appseed.us/) and start your next project
109-
- 👉 [Deploy Projects on Aws, Azure and Digital Ocean](https://www.docs.deploypro.dev/) via **DeployPRO**
110-
- 👉 Create an amazing landing page with [Simpllo, an open-source site builder](https://www.simpllo.com/)
107+
- 👉 [Deploy Projects on Aws, Azure, and DO](https://www.docs.deploypro.dev/) via **DeployPRO**
108+
- 👉 Create landing pages with [Simpllo, an open-source site builder](https://www.simpllo.com/)
111109
- 👉 [Django App Generator](https://app-generator.dev/django/) - A 2nd generation App Builder

0 commit comments

Comments
 (0)