Usage of if judgment in HTML

Usage of if judgment in HTML

In the process of Django web development, when writing HTML, a list variable with the same name is passed from the backend, but the content format is different and needs to be judged separately. I have consulted many articles and tried several methods, but the format seems to be wrong (I have not systematically studied the front end, and basically just copied it)
Later I found the usage of html if in Django framework

The format is roughly as follows

  <div class="if/else">
                    {% if formname == 'Callrecords' %}
                        Callrecords
                    {% elif formname == 'Riderecords' %}
                        Riderecords
                    {% elif formname == 'Clubinfo' %}
                        Clubinfo
                    {% elif formname == 'Clubmemb' %}
                        Clubmemb
                    {% elif formname == 'Personinfo' %}
                        Personinfo
                    {% endif %}
                    </div>

This syntax is provided by Django and is used in native HTML code writing but is useless. The code box above uses the HTML format, but you can also see that the content between the <div> tags cannot be marked by the HTML language, indicating that it is not a built-in HTML syntax.
But at least my Django project has no problem using it!

Summarize

The above is the usage of if judgment in HTML introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

<<:  How to check if data exists before inserting in mysql

>>:  Detailed explanation of the principle of Vue monitoring data

Recommend

MySQL login and exit command format

The command format for mysql login is: mysql -h [...

MySQL's method of dealing with duplicate data (preventing and deleting)

Some MySQL tables may contain duplicate records. ...

Summary of pitfalls of using nginx as a reverse proxy for grpc

background As we all know, nginx is a high-perfor...

Detailed explanation of MySQL 5.7.9 shutdown syntax example

mysql-5.7.9 finally provides shutdown syntax: Pre...

Detailed explanation of MySQL master-slave inconsistency and solutions

1. MySQL master-slave asynchrony 1.1 Network Dela...

Install ethereum/Ethereum from scratch under CentOS7

Table of contents Preface Add sudo write permissi...

Detailed explanation of MySQL 8.0 dictionary table enhancement

The data dictionary in MySQL is one of the import...

List rendering instructions for efficient development of Vue front-end

v-for directive Speaking of lists, we have to men...

Basic operations of mysql learning notes table

Create Table create table table name create table...

Responsive layout summary (recommended)

Basic knowledge of responsive layout development ...

CSS implements the bottom tapbar function

Now many mobile phones have the function of switc...

Linux uses lsof command to check file opening status

Preface We all know that in Linux, "everythi...

Deployment and Chinese translation of the docker visualization tool Portainer

#docker search #docker pull portainer 1. Download...