烧瓶上的表格菜单

时间:2021-01-25 03:08:58

标签: python html css flask

我正在尝试从 php 重新创建一个应用程序到烧瓶中。 我是烧瓶新手,所以我决定重新创建所有内容。我目前停留在这个多表格菜单上,例如

a(active menu)| b(inactive) | c (inactive
              ----------------------------
Item Form
A :
B :
C :

在 php 应用程序上它使用了此代码

@extends('layouts.master')
@section('title','New Issue Form')
@section('container')

<div class="ui tabular menu">
  <a class="item" data-tab="tab-1"><i class="plus icon green"></i>New Issue Form</a>
  <a class="item" data-tab="tab-2"><i class="warning circle icon red"></i>In Progress</a>
</div>
<div class="ui tab active" data-tab="tab-1">
<div class="ui container text raised very padded segment">

在烧瓶上我复制并粘贴了它,因为我不知道如何正确地做

<div class="ui tabular menu">
    <a class="item" data-tab="tab-1"><i class="plus icon green"></i>New Issue Form</a>
    <a class="item" data-tab="tab-2"><i class="warning circle icon red"></i>In Progress</a>
</div>
<div class="ui tab active" data-tab="tab-1">
    <div class="ui container text raised very padded segment">

它对我来说似乎是一个普通的 html,但我不知道如何在我的烧瓶视图页面中使用它,因为我已经尝试过它并且它似乎不起作用。它刚回来 无法点击的纯文本 enter image description here

本来应该是这样的

enter image description here

0 个答案:

没有答案