Exemplo n.º 1
0
 def det_url(self):
     cc = self.central_character()
     if cc is None:
         return 'Not available'
     return url_for("characters.render_Dirichletwebpage",
                    modulus=cc.modulus,
                    number=cc.number)
Exemplo n.º 2
0
 def galois_links(self):
     """
     Used in listing search results to show links to all artin representations in this Galois orbit.
     """
     base = self._data["Baselabel"]
     labels = [
         f"{base}.{num2letters(conj['GalOrbIndex'])}"
         for conj in self.GaloisConjugates()
     ]
     return ' '.join('<a href="{}">{}</a>'.format(
         url_for(
             "artin_representations.render_artin_representation_webpage",
             label=label), artin_label_pretty(label)) for label in labels)
Exemplo n.º 3
0
 def url_for(self):
     if self.label():
         return url_for("number_fields.by_label", label=self.label())
     else:
         None
Exemplo n.º 4
0
 def url_for(self):
     return url_for(
         "artin_representations.render_artin_representation_webpage",
         label=self.label())
Exemplo n.º 5
0
 def url_for(self):
     if self.label():
         return url_for("number_fields.by_label", label=self.label())
     else:
         None
Exemplo n.º 6
0
 def url_for(self):
     return url_for("artin_representations.by_data", dim=self.dimension(), conductor=self.conductor(), index=self.index())
Exemplo n.º 7
0
 def url_for(self):
     return url_for("artin_representations.render_artin_representation_webpage", label=self.label())
Exemplo n.º 8
0
 def det_url(self):
     cc= self.central_character()
     if cc is None:
        return 'Not available'
     return url_for("characters.render_Dirichletwebpage", modulus=cc.modulus, number=cc.number)