Add header view and controller for configuration fields
This commit is contained in:
13
application/controllers/web/configurations/fields.php
Normal file
13
application/controllers/web/configurations/fields.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
class Fields extends CI_Controller {
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
public function upload_csv() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Configuration <?=$name?></title>
|
||||
<link rel="stylesheet" href="/ScattPort/assets/css/inuit.css" />
|
||||
<link rel="stylesheet" href="<?=base_url()?>/assets/css/inuit.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="grids">
|
||||
|
||||
2
application/views/web/configurations/upload_csv.php
Normal file
2
application/views/web/configurations/upload_csv.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php echo $this->load->view('web/header'); ?>
|
||||
|
||||
8
application/views/web/header.php
Normal file
8
application/views/web/header.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Scattport</title>
|
||||
<?=link_tag('assets/css/inuit.css');?>
|
||||
</head>
|
||||
<body>
|
||||
@@ -7,7 +7,7 @@ and open the template in the editor.
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Project <?=$name?></title>
|
||||
<link rel="stylesheet" href="/ScattPort/assets/css/inuit.css" />
|
||||
<link rel="stylesheet" href="<?=base_url();?>/assets/css/inuit.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="grids">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>List of projects</title>
|
||||
<link rel="stylesheet" href="/ScattPort/assets/css/inuit.css" />
|
||||
<link rel="stylesheet" href="<?=base_url();?>/assets/css/inuit.css" />
|
||||
</head>
|
||||
<body>
|
||||
<table>
|
||||
|
||||
Reference in New Issue
Block a user