#djangoapp
Explore tagged Tumblr posts
staszaranek · 1 month ago
Text
Secure Health Data Transfer, Simplified
Remote Patient Monitoring App for EU-based startup – built with Django. 💓 Integrates with medical devices 🔐 GDPR & FHIR compliant 📱 Real-time health tracking
0 notes
codesnnippets · 4 years ago
Photo
Tumblr media
Creating a recent posts feature on a django blog application Up next,we are creating a recent posts feature on our Python,DJango and Tailwindcss application. But first, read how to implement a featured Image feature on a blog application here https://codesnnippets.com/how-to-add-a-featured-image-feature-to-a-python-django-and-tailwind-css-blog-application-django-part-7/ #pythonframework #djangomodel #djangoviews #djangoapp #djangoproject #programming #webdevelopment #templatetags (at Lilongwe, Malawi) https://www.instagram.com/p/CUr6lnAjBib/?utm_medium=tumblr
0 notes
guangyaw · 3 years ago
Text
Open edX 登入失敗次數過多
之前從程式碼來看 Open edX 第三方登入,除了支援其他各大網站的登入之外,對於帳號的保護也是相當的重視,這就是今天要來介紹 Open edX 登入失敗次數過多 在 Open edX 登入失敗幾次後就會出現提示畫面,告知使用者若繼續錯誤就會啟動帳號保護機制,簡單來說就是帳號被鎖定,避免有心人士嘗試破解帳號。底下這就是一個提示的範例,系統會告知使用者目前還有幾次的嘗試機會,並提醒使用者若是忘記密碼請重置密碼 在原始碼的檔案 edx-platform/common/djangoapps/student/models.py 中,可以看到 LoginFailures 的一個紀錄 隨著登入失敗的次數增加,鎖定帳號的 counter…
Tumblr media
View On WordPress
0 notes
phungthaihy · 5 years ago
Photo
Tumblr media
Building a To-Do App with Django and Bootstrap | Beginner Web Development Tutorial http://ehelpdesk.tk/wp-content/uploads/2020/02/logo-header.png [ad_1] Today, we are learning how to bu... #androiddevelopment #angular #c #css #dataanalysis #datascience #deeplearning #development #django #django2.0tutorial #djangoapp #djangobootstrap #djangocourse #djangodocs #djangoframework #djangoframeworktutorial #djangotodoapp #djangotodoapptutorial #djangotodolistapp #djangotutorial #djangowithbootstrap #docker #iosdevelopment #java #javascript #learnbasicsofdjango #learndjango #machinelearning #node.js #python #pythondjango #pythondjangocourse #pythondjangocourseforbeginners #pythondjangoframework #pythondjangotutorial #pythontodoapp #react #to-dolistapp #unity #webdevelopment
0 notes
codesnnippets · 4 years ago
Photo
Tumblr media
Learning Django using illustrations part 3. In our last post I had raised an unfamiliar point that django project comes with a default app which takes the name of the project itself. Infact this app has a central module, the settings.py which has an INSTALLED_APPS variable which is a list of all apps config class objects. These classes are found inside each app's apps.py module. Down to the minute, to get to speed really quickly, you need to understand how these apps work. In the coming lessons,we will be discussing how the apps work. For now, take a look at my project based blog posts.... with the latest discussing search engine here....https://codesnnippets.com/creating-a-searching-feature-to-a-python-django-and-tailwind-css-blog-application-django-part-9/ #python #programming #pythonframeworks #django #webdevelopment #djangoconcepts #djangoapps #djangopackages #djangomodels #djangoviews #djangouls #djangosettings (at Lilongwe, Malawi) https://www.instagram.com/p/CVSMa_XAm8q/?utm_medium=tumblr
0 notes
codesnnippets · 4 years ago
Photo
Tumblr media
Django project and the django apps: part 2 Django MVT achtecture depends on the apps. As a matter of fact,by default 🙃👴🏻a django project is scalfolded with a default app which comes as a package named after the project directory 👴🏻😏. If you name your project my_app, the default app will be named my_app just inside the project app. This app has a settings.py file which among other things lists some pre_installed apps in its INSTALLED_APPS variable. We add all our custom apps in this list. Don't forget to check out our project based django series on our blog... https://codesnnippets.com/creating-a-latest-posts-feature-on-a-python-django-and-tailwind-css-blog-application-django-part-8/ #python #pythonframework #django #webdevelooment #djangoconcepts #djangomodels #djangoapps #djangoviews #djangosettings #djangourls #codesnnoppets https://www.instagram.com/p/CU20FGVgKLF/?utm_medium=tumblr
0 notes
guangyaw · 5 years ago
Text
從程式碼解析 OpenedX Oauth 第三方登入流程
從程式碼解析 OpenedX Oauth 第三方登入流程
之前提到過 OpenedX 線上教學平台,
提供了線上學習的管道,
既然提供了會員登入的方式,
就難免會提到第三方登入,
畢竟它還是很方便的登入方式,
而且還不用多記憶一組帳號密碼,
知名的網站通常都有提供第三方登入功能,
例如 Google, Facebook, Line 等等,
今天就帶大家
從程式碼解析 OpenedX Oauth 第三方登入流程
網站登入位址大多都為 /login
OpenedX 也不免俗的從這開始,
Tumblr media
從 lms / djangoapp / student_account / views 中,
可找到 login_and_registration_form,
在這個步驟會收集一些待會會用到的參數資料,
(例如 login後要回到哪個網址? 使用者是要註冊還是登錄?)
View On WordPress
0 notes