Create basic layout for manage page
This commit is contained in:
		
							parent
							
								
									f7dfd24a68
								
							
						
					
					
						commit
						a6e8e924e4
					
				
					 1 changed files with 31 additions and 0 deletions
				
			
		| 
						 | 
					@ -0,0 +1,31 @@
 | 
				
			||||||
 | 
					extends layout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					block stylesheets
 | 
				
			||||||
 | 
					  link(rel='stylesheet', href='/stylesheets/index.css')
 | 
				
			||||||
 | 
					  link(rel='stylesheet', href='/stylesheets/form.css')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					block content
 | 
				
			||||||
 | 
					  div#mobile-view
 | 
				
			||||||
 | 
					    h1 Management Panel
 | 
				
			||||||
 | 
					    div
 | 
				
			||||||
 | 
					        span(class='form-section')
 | 
				
			||||||
 | 
					            label Category
 | 
				
			||||||
 | 
					            span(class='form-section-input')
 | 
				
			||||||
 | 
					                select#category-dropdown(name="category" class="form-main-dropdown")
 | 
				
			||||||
 | 
					                    option(value="seasons") Seasons 
 | 
				
			||||||
 | 
					                    option(value="sports") Sports 
 | 
				
			||||||
 | 
					                    option(value="divisions") Divisions 
 | 
				
			||||||
 | 
					                    option(value="teams") Teams 
 | 
				
			||||||
 | 
					                    option(value="games") Games
 | 
				
			||||||
 | 
					    div 
 | 
				
			||||||
 | 
					        h2#table-header
 | 
				
			||||||
 | 
					        table
 | 
				
			||||||
 | 
					            colgroup   
 | 
				
			||||||
 | 
					                col#score-column(span="1")
 | 
				
			||||||
 | 
					                col#opponent-column(span="1")
 | 
				
			||||||
 | 
					                col#date-column(span="1")
 | 
				
			||||||
 | 
					            tbody#games-table
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					block scripts 
 | 
				
			||||||
 | 
					  script(src='/scripts/index.js' type="module")
 | 
				
			||||||
		Reference in a new issue