Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (19.9k points)

I have designed and coded a website (with bootstrap 4) and now I would like to import it in Django CMS so the client can edit the content.

Any tips or guide that helps me to achieve this?

1 Answer

0 votes
by (25.1k points)

You have to make it into a template and import the information itself separately. Add new template to settings.py.

If your client already has a basic template that you're editing you may simply edit his existing files and CSS. Alternatively, you may also download/import an existing template and use it as your base for editing.

The template itself will look something like this: default template: base.html,

{% load i18n %}

{% extends 'base.html' %}

{% block title %}Title Here{% endblock %}

    {% block content %}

    {% endblock %}

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...