[Fixed]-How to add extra parameters to html tag from base django

1👍

In base.html

<html lang="en-us" {% block np_app %}{% endblock %}  "some other properties">

In other.html

{% extends 'base.html' %}
{% block np_app %} data-ng-app="app" {% endblock %}

Leave a comment