PyCharm 2024.1 Help

Debug Django templates

Enable the Django plugin

This functionality relies on the Django plugin, which is bundled and enabled in PyCharm by default. If the relevant features aren't available, make sure that you didn't disable the plugin.

  1. Press Ctrl+Alt+S to open the IDE settings and then select Plugins.

  2. Open the Installed tab, find the Django plugin, and select the checkbox next to the plugin name.

Enable the Django plugin

This functionality relies on the Django plugin, which is bundled and enabled in PyCharm by default. If the relevant features aren't available, make sure that you didn't disable the plugin.

  1. Press Ctrl+Alt+S to open the IDE settings and then select Plugins.

  2. Open the Installed tab, find the Django plugin, and select the checkbox next to the plugin name.

Before you start, ensure that Django is specified as the project template language.

Prepare an example

  1. Create a Django project demoDjangoProject, with the application poll.

    Creating a Django app
  2. PyCharm creates the project structure and populates it with the necessary files.

  3. Open the file poll/views.py. It already has the import statement and the invitation to create views for your application:

    from django.shortcuts import render # Create your views here.

    Let's define a view for the application's home page:

    from django.shortcuts import render def index(request): return render(request, 'poll/index.html', context={'hello': 'world'})
  4. index.html is marked as an unresolved reference:

    Template not found

    Press Alt+Enter or click Intention bulb and choose to create the missing template:

    Create a template

    Create Template dialog appears, showing the read-only template name (Template path field), and a list of possible template locations (Templates root field):

    Creating the index.html file
  5. Select the template directory, where the new template will be created.

    The Templates root field provides a list of possible locations for the new template. This list includes the template directories specified in the Project Structure page of the IDE settings Ctrl+Alt+S plus all templates folders located inside of app directories, if any.

  6. Click OK.

    An empty .html file is created in the specified location

  7. In templates/poll/index.html, type the following code to print out the value of the hello variable one character after another:

    {% for char in hello %} {{ char }} {% endfor %}

    According to the context provided in poll/views.py, the value of hello is world. So, we expect the rendered page to contain w o r l d.

  8. Open the demoDjangoProject/urls.py file.

    In this file find urlpatterns and add the following code to define which view should be used to render the index page:

    path('index/', index),

    Do not forget about the import statement!

    from poll.views import index

    You should end up with the following:

    url patterns

So, the example code is ready.

Set a breakpoint

  • Add a breakpoint to the template file. To do that, open the file templates/poll/index.html and click the gutter:

    Breakpoint

The Django server run/debug configuration is created automatically. If required, you can edit it by selecting the Edit Configurations command in the run/debug configuration list on the main toolbar:

Edit configurations

For example, you can choose to open a browser window automatically when the configuration is launched:

Run/Debug configuration for a Django server

Launch a run/debug configuration

  1. Launch the selected run/debug configuration in the debug mode by clicking Start the debugger.

    Debugging a Django template: launch debug configuration
  2. Click the link in the Debug tool window. A browser window will open with a Page not found message:

    Error '404' in a browser

    It happens because we didn't specify a path for '/' in the file urls.py

  3. Let's add /index in the browser address bar and press Enter.

The PyCharm window appears. You can see that the breakpoint has been hit, and the Debug tool window contains the current values of the variables in the Threads & Variables tab:

Breakpoint hit

The Debug tool window for Django applications has all the functions, similar to pure Python scripts:

  • Stepping through the program

    The stepping toolbar is active, and the stepping buttons are available. For example, you can click Step over and see that the value of the char variable changes to the next letter of the word world.

    For more information, refer to Step through the program.

  • Evaluating expressions

    Press Alt+F8, or click on the stepping toolbar, and then select Evaluate expression. In the dialog that opens, type the expression you wish to evaluate, and click Evaluate:

    Evaluate expressions

    For more information, refer to Evaluate expressions.

  • Watching variables

    Suppose, you'd like to always keep an eye on a certain variable of a template, say, char. How to do that?

    At the top of the Debugger tab of the Debug tool window, type the name of the variable of interest, and press Add to watch:

    Add a watch for a variable

    The value of the variable will be displayed at the top of the variable list through the rest of the debugging process. For more information, refer to Watches.

That's it... What has been done here? Let's repeat:

  • You've created a Django project, with a template in it.

  • You've added a breakpoint to this template.

  • You've launched the Django server run/debug configuration in the debug mode.

  • Having hit the breakpoint, you've learned how to step through your template, evaluate expressions, and add watches.

Last modified: 05 April 2024