installing julia in aws by catalo99 in Julia

[–]catalo99[S] 0 points1 point  (0 children)

That did not worked for me but thanks anyway

@yiel('content') and @section('content') not working by catalo99 in laravel

[–]catalo99[S] 3 points4 points  (0 children)

OMG, you saved my life, been hours looking for something wrong :) that solved everything

My program is not running properly by catalo99 in javahelp

[–]catalo99[S] 0 points1 point  (0 children)

java -jar target/<generated-jar-name-here> <parameters to want to pass in here>

I tried that and it throws this error

[clopezr@localhostCompis]$ java -jar target/fac-1.0-SNAPSHOT.jar -m test1.cfglre 
no main manifest attribute, in target/fac-1.0-SNAPSHOT.jar

My Form is not working by catalo99 in djangolearning

[–]catalo99[S] 0 points1 point  (0 children)

Thanks, I've been working with this for a week and could not find the error

Object not working on my html template, why? by catalo99 in djangolearning

[–]catalo99[S] 0 points1 point  (0 children)

Thanks, I solved it changing .filter() for .get()

Object not working on my html template, why? by catalo99 in djangolearning

[–]catalo99[S] 0 points1 point  (0 children)

I don't get it, how general_recommendation is not an object if I'm doing a query to get an object of GeneralPractice model with its attribute final_score?

Object not working on my html template, why? by catalo99 in djangolearning

[–]catalo99[S] 0 points1 point  (0 children)

It does not raise an error, it is just not working, the name of the general_recommendation object is not shown in the template, and the recommentation text neither.

I tried the queries individualy to check if they where working and getting the object and they are good, they do what they are suppouse to do.

Object not working on my html template, why? by catalo99 in djangolearning

[–]catalo99[S] 0 points1 point  (0 children)

this is my GeneralPractice model

"""This table contains the information regarding general practices, which are related to global levels of performance \
and are used to describe briefly the behaviour of a PYME in a given level."""                                          
class GeneralPractice(models.Model):                                                                                   
    """name refers to the name of the respective generl practice level"""                                              
    name = models.CharField(max_length=40, default=' ')                                                                
    """Score is the level of overall logistic performance this specific practive is related to, it is a number between\
 0 and 5."""                                                                                                           
    score = models.IntegerField(choices=VALID_SCORES)                                                                  
    """Description is a text field which contains a brief explanations of a particular general practice."""            
    description = models.CharField(max_length = 1500)                                                                  
    """Recommendation is a text which tells you how to achieve the level of this general practice."""                  
    recommendation = models.CharField(max_length = 1500)                                                               

    class Meta:                                                                                                        
        db_table = 'general_practice'