• This project
    • Loading...
  • Sign in

zuzitsu / UR_Village

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • UR_Village
  • views
  • components
  • grade.ejs
  • Suyeon Jung's avatar
    Add grade function to category · 243b88a6
    243b88a6
    Suyeon Jung authored 2020-12-09 05:20:42 +0900
grade.ejs 532 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<%if(grade == 'A'){%>
    <div class="alert alert-primary" role="alert">
        <h3>평가 등급 :
            <%=grade%>
        </h3>
    </div>
    <%} else if(grade == 'B'){%>
        <div class="alert alert-warning" role="alert">
            <h3>평가 등급 :
                <%=grade%>
            </h3>
        </div>
        <%} else{%>
            <div class="alert alert-danger" role="alert">
                <h3>평가 등급 :
                    <%=grade%>
                </h3>
            </div>
            <%}%>