Replies: 4 comments
-
Hi @taljacob2, |
Beta Was this translation helpful? Give feedback.
-
Sounds great! 👍 |
Beta Was this translation helpful? Give feedback.
-
Thanks for @paOmer for excellent work! Each team member can now create his own "feature"-app based on #34. |
Beta Was this translation helpful? Give feedback.
-
@ShirleyFichman @paOmer @DeanBiton @amittcohen GUIDE: How To Render The View In Your "Feature"-AppSay YOUR_FEATURE_APP_NAME is one of the following names:
Once you have created your "feature"-app:
|
Beta Was this translation helpful? Give feedback.
-
Hi all! 🥇 🏅
All of our 5 "feature"-apps will make use of some "global" files. For example:
base_template.html
,icons
foldermain.css
and more...We should arrange our Django Application such that the
jobseeker
-app is a "global" app that is being injected into each "feature"-app. This way, we could make use of "global" shared files together in a modular way!This is the Django Application Rendering Flow that will help us share data between our "feature"-apps:
Practically said, the way to create this modular structure is by doing the following:
Urls
app/urls.py
should look like so:jobseeker/urls.py
should look like so:Templates
jobseeker/templates
folder that contains:base_template.html
.Static
jobseeker/static
folder that contains:main.css
main_logo.png
icons
facebook.svg
instagram.svg
twitter.svg
Beta Was this translation helpful? Give feedback.
All reactions