@if (need) {
        {{need.name}}
        {{need.type}} GOAL
        {{need.description}}
        
            
            This goal is {{(((need.current)*100) / (need.maxGoal)).toFixed(0)}}% complete!
         
        
          
            Target Goal: {{(need.type === GoalType.MONETARY) ? "$" : ""}}{{need.maxGoal}}
            Amount Currently Collected: {{need.type.toString() == 'MONETARY' ? '$' : ''}}{{need.current}}
            Location: {{need.location}}
                Urgency: 
                    Not urgent
                    URGENT
                
            
             
            
         
        
            
            
                
            
            
            
         
    } @else {
        Need not found
        The requested need does not exist. Browse the cupboard
    }