Blame view

WebRoot/WEB-INF/jsp/sunvote/teacher/en_paper_view.jsp 2.53 KB
efdefb1b   孙向锦   添加语言English
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  <%
  	String path = request.getContextPath();
  	String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  %>
  <!DOCTYPE html>
  <html lang="zh-CN">
    <head>
      <meta charset="utf-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <title>SunVote-Education Management System</title>
  
      <!-- Bootstrap -->
      <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
  	<link href="../static/css/teach.css" rel="stylesheet">
  	<link href="../static/css/paper_view.css?t=1" rel="stylesheet">
  
      <!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
      <!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
      <!--[if lt IE 9]>
        <script src="https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js"></script>
        <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
      <![endif]-->
  	<style>
  		 .analysis table{display:inline-block;vertical-align:middle;}
  		 .resolve_box img{vertical-align:top;}
  		 .up{width:20px;hiehgt:20px;}
  		 .down{width:20px;height:20px;margin-left:10px;}
  		 .save_box{width:100%;height:80px;background:#fff;text-align:center;position:fixed;bottom:0;left:0;}
  		 .container{height:100%;}
  		 .content_report{padding-bottom:80px;min-height:calc(100% - 126px);}
  	</style>
    </head>
    <body>
    <div class="container">
      <div class="page-header">
  	  <h3 class="col-md-6" id="paper_title"></h3>
0e4da37e   孙向锦   学校管理员界面
42
  	   <h3 class="col-md-6">Time Allowed:<span id="time"></span>Minutes</h3>
efdefb1b   孙向锦   添加语言English
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  		<div class="clearfix"></div>
  	</div>
  	<div class="content_report">
  
  		<div class="col-md-12 analysis">
  			<ul>
  				<!--试题列表-->
  			</ul>
  		</div>
  		<div class="clearfix"></div>
  	</div>
  	<div class="save_box">
  		<input type="button" value="Save" class="btn btn-primary btn-lg topic save" />
  	</div>
  	</div>
  	<script>
  		var subjectId = '${pd.subject_id}';
  	</script>
  	<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
  	<script src="../static/js/echars.js"></script>
0e4da37e   孙向锦   学校管理员界面
63
  	<script src="../static/js/en_paper_view.js?a=0"></script>
efdefb1b   孙向锦   添加语言English
64
65
  	
  </html>