Backend project with django and my BSS project file

My issue is really straight forward :-

After i finish my BSS project my assets folders contains alot of files CSS - JS - Jquery and i dont really get it i just to see HTML - CSS - JS of my BSS project so i can inject it or import it in my Django app templates folder

i hope you understand my issue is that in the Assets folder of my BSS project after exporting alot of folders and files that i dont understand i just need a guide of how to extract only html - css - js that's it.

Thanks in advance

I'm sorry to hear about the problems you are having. Do you think they might be self-inflicted?

Django follows the MTV architect... and I also understand it's a fairly good movie to boot!

On a more serious note. Why are you using Bootstrap Studio as a front-end for Django?

You could add Django template markup to BSS pages and use a script to later convert that markup.

For example:

<div class="item" dj-for="i in items">
  <h2 dj-ref="i.name">This is the heading</h2>
  <div dj-ref="i.content|markdown">Lorem ipsum dolor sit amet …</div>
</div>

(when processed) becomes:

{% for i in items %}
  <div class="item">
    <h2>{{ i.name }}</h2>
    <div>{{ i.content|markdown }}</div>
  </div>
{% endfor %}

You would, however, need to write the markup and post converter.

This will work, but it seems to me to be the long way around the mountain.