コード例 #1
0
ファイル: dservice.php プロジェクト: rokkit/Ifmo-ais
        $("#do-choose").popover();
    })
    </script>

  </div>
</div>
<div class="row points-row">
    <div id="points-table" class="span7">
<h2>Ваши оценки за первый курс</h2>
<div class="points">
    <?php 
$ifmodb = connectToIfmoDb();
$fspodb = connectToFspoDB();
$student_id = $_SESSION['user_id'];
$transfers = Trans::getTransfersByIdDirection($direction->id);
$disciplines = Trans::getDisciplinesByDirection($direction->id, $ifmodb);
$student = Student::getStudentById($student_id);
?>
    <div id="stud-predmet">
        <table class="table table-bordered" id="stud-subject-table">
            <thead>
                <tr>
                    <th>Предмет СПО</th>
                    <th>Оценка</th>
                    <th>Предмет ВПО</th>
                </tr>
            </thead>
            <!--Формируем таблицу дисциплин и соответствующих предметов-->
            <tbody id="stud-subject-body">

            </tbody>